Fix nvm and vim installation, update pkglist
This commit is contained in:
@@ -64,18 +64,6 @@ endif
|
|||||||
set nobackup
|
set nobackup
|
||||||
set nowritebackup
|
set nowritebackup
|
||||||
|
|
||||||
" Don't pass messages to |ins-completion-menu|.
|
|
||||||
set shortmess+=c
|
|
||||||
|
|
||||||
" Always show the signcolumn, otherwise it would shift the text each time
|
|
||||||
" diagnostics appear/become resolved.
|
|
||||||
if has("patch-8.1.1564")
|
|
||||||
" Recently vim can merge signcolumn and number column into one
|
|
||||||
set signcolumn=number
|
|
||||||
else
|
|
||||||
set signcolumn=yes
|
|
||||||
endif
|
|
||||||
|
|
||||||
" ============================================================================ "
|
" ============================================================================ "
|
||||||
" === UI === "
|
" === UI === "
|
||||||
" ============================================================================ "
|
" ============================================================================ "
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
apt-transport-https
|
apt-transport-https
|
||||||
bat
|
batcat
|
||||||
curl
|
curl
|
||||||
fdfind
|
fd-find
|
||||||
git
|
git
|
||||||
gnupg2
|
gnupg2
|
||||||
jq
|
jq
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ if not_installed "nvm"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
printf "nvm is installed, upgrading...\n"
|
printf "nvm is installed, upgrading...\n"
|
||||||
git --git-dir="$NVM_DIR/.git" fetch -q
|
run "https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh" \
|
||||||
git --git-dir="$NVM_DIR/.git" rebase -q --autostash FETCH_HEAD
|
"bash"
|
||||||
|
|
||||||
nvm --version
|
nvm --version
|
||||||
nvm use node
|
nvm use node
|
||||||
|
|||||||
@@ -10,10 +10,10 @@ if [ ! -f $plug_target ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Installing neovim support";
|
echo "Installing neovim support";
|
||||||
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring && pip3 install --user neovim pynvim 'python-language-server[all]'
|
pip3 install --user neovim pynvim 'python-language-server[all]'
|
||||||
npm install -g neovim elm-format
|
yarn global add neovim
|
||||||
sudo gem install neovim
|
sudo gem install neovim
|
||||||
|
|
||||||
echo "Running PlugInstall";
|
echo "Running PlugInstall";
|
||||||
nvim --headless +PlugClean! +PlugInstall +PlugUpgrade +PlugUpdate +qall
|
nvim --headless +UpdateRemotePlugins +PlugClean! +PlugInstall +PlugUpgrade +PlugUpdate +qall
|
||||||
nvim --version
|
nvim --version
|
||||||
|
|||||||
Reference in New Issue
Block a user