Compare commits
No commits in common. "stable" and "1.7.0" have entirely different histories.
13
install.sh
13
install.sh
|
@ -150,7 +150,7 @@ if set -q _flag_help
|
||||||
print HELP
|
print HELP
|
||||||
|
|
||||||
# Exit (success)
|
# Exit (success)
|
||||||
exit 0
|
return 0
|
||||||
end
|
end
|
||||||
|
|
||||||
if not type -q nvim
|
if not type -q nvim
|
||||||
|
@ -159,7 +159,7 @@ if not type -q nvim
|
||||||
echo $NVIM_WIKI_INSTALLATION
|
echo $NVIM_WIKI_INSTALLATION
|
||||||
|
|
||||||
# Exit (fail)
|
# Exit (fail)
|
||||||
exit 1
|
return 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if set -q _flag_update
|
if set -q _flag_update
|
||||||
|
@ -168,15 +168,16 @@ if set -q _flag_update
|
||||||
curl -o- https://fnm.vercel.app/install | bash
|
curl -o- https://fnm.vercel.app/install | bash
|
||||||
|
|
||||||
# Initializing fnm
|
# Initializing fnm
|
||||||
source ~/.config/fish/conf.d/fnm.fish
|
source /home/mirzaev/.config/fish/conf.d/fnm.fish
|
||||||
|
|
||||||
# Downloadind and installing Node.js:
|
# Downloadind and installing Node.js:
|
||||||
fnm install $NODEJS_VERSION
|
fnm install $NODEJS_VERSION
|
||||||
|
|
||||||
# need to rewrite in the future (бляяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяя)
|
# need to rewrite in future (бляяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяяя)
|
||||||
sudo apt install -y npm python3-venv python3-pip rubygems ruby-dev pkg-config
|
sudo apt install -y npm python3-venv python3-pip rubygems ruby-dev pkg-config
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m ~/.local/bin/pip install --upgrade pip
|
||||||
pip install --upgrade pynvim
|
fish_add_path ~/.local/bin
|
||||||
|
~/.local/bin/pip install --upgrade pynvim
|
||||||
sudo gem install neovim
|
sudo gem install neovim
|
||||||
|
|
||||||
# Install NeoVim module for NPM
|
# Install NeoVim module for NPM
|
||||||
|
|
|
@ -37,7 +37,7 @@ require('gitsigns').setup {
|
||||||
row = 0,
|
row = 0,
|
||||||
col = 1
|
col = 1
|
||||||
},
|
},
|
||||||
--[[ yadm = {
|
yadm = {
|
||||||
enable = false
|
enable = false
|
||||||
}, ]]
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue