Fix lsp install; fix update function.

This commit is contained in:
Bartek Stalewski 2024-03-31 11:25:53 +02:00
parent c34e5806c2
commit 3a4658ce8e
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -45,7 +45,7 @@ fi
function ud() {
wd dots && git pull
for i in $XDG_CONFIG_HOME/nvim ~/.local/git/zsh_modules/*; do sh -c "cd $i && git pull"; done
for i in ~/.local/git/zsh_modules/*; do sh -c "cd $i && git pull"; done
nvim -c "lua require('lazy').sync({wait = true})"
rm -rf ~/go
cd

View File

@ -31,3 +31,6 @@ for i in ${LOCAL_GIT_DIR}/dotfiles/_cli/*; do
rm -rf ${XDG_CONFIG_HOME}/$(basename $i)
ln -sf ${LOCAL_GIT_DIR}/dotfiles/_cli/$(basename $i) ${XDG_CONFIG_HOME}/
done
# nvim setup
nvim -c "lua require('lazy').sync({wait = true})" -c "MasonInstallAll"