Fix nvm and vim installation, update pkglist

This commit is contained in:
Andrejus
2020-11-09 19:33:17 +00:00
parent 2e254a13ae
commit 9e8b2642b4
4 changed files with 7 additions and 19 deletions

View File

@@ -64,18 +64,6 @@ endif
set nobackup
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 === "
" ============================================================================ "

View File

@@ -1,7 +1,7 @@
apt-transport-https
bat
batcat
curl
fdfind
fd-find
git
gnupg2
jq

View File

@@ -17,8 +17,8 @@ if not_installed "nvm"; then
fi
printf "nvm is installed, upgrading...\n"
git --git-dir="$NVM_DIR/.git" fetch -q
git --git-dir="$NVM_DIR/.git" rebase -q --autostash FETCH_HEAD
run "https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh" \
"bash"
nvm --version
nvm use node

View File

@@ -10,10 +10,10 @@ if [ ! -f $plug_target ]; then
fi
echo "Installing neovim support";
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring && pip3 install --user neovim pynvim 'python-language-server[all]'
npm install -g neovim elm-format
pip3 install --user neovim pynvim 'python-language-server[all]'
yarn global add neovim
sudo gem install neovim
echo "Running PlugInstall";
nvim --headless +PlugClean! +PlugInstall +PlugUpgrade +PlugUpdate +qall
nvim --headless +UpdateRemotePlugins +PlugClean! +PlugInstall +PlugUpgrade +PlugUpdate +qall
nvim --version