neovim-config/install.sh

100 lines
2.2 KiB
Bash
Raw Normal View History

2021-03-19 01:42:44 +00:00
#!/usr/bin/env bash
BASE=$(git rev-parse --show-toplevel)
LSP_BIN_PATH=$HOME/.local/bin
2021-03-31 11:28:50 +00:00
supported_lsp_langs="css html ts rust"
lsp_langs=${@:-"$supported_lsp_langs"}
2021-03-19 01:42:44 +00:00
pfx="~~~~~ "
heading() {
echo
echo $pfx $1
}
get_platform() {
case "$(uname -s)" in
Linux*) platform=Linux;;
Darwin*) platform=Mac;;
CYGWIN*) platform=Cygwin;;
MINGW*) platform=MinGw;;
*) platform="UNKNOWN:${unameOut}"
esac
echo $platform
}
2021-03-28 17:50:53 +00:00
heading "installing packer"
if [[ ! -e ~/.local/share/nvim/site/pack/packer/start/packer.nvim ]]; then
heading "Installing packer"
git clone https://github.com/wbthomason/packer.nvim\
~/.local/share/nvim/site/pack/packer/start/packer.nvim
fi
2021-03-19 01:42:44 +00:00
heading "Linking config"
2021-03-28 17:50:53 +00:00
heading "old nvim config will be deleted so watchout :0"
2021-03-27 02:50:15 +00:00
# copying config
2021-03-31 11:28:50 +00:00
#rm -rf ~/.config/nvim/ && mkdir ~/.config/nvim
#cp -r init.lua ~/.config/nvim && cp -r lua ~/.config/nvim
2021-03-27 02:50:15 +00:00
#for f in `find -E . -regex ".*\.vim$|.*\.lua$"`; do
# p=${f#*/}
# echo -e '\t' ${p}
# path=~/.config/nvim/${p}
# rm -rf ~/.config/nvim/${p}
# mkdir -p $(dirname "${path}")
# ln -s ${BASE}/${p} ~/.config/nvim/${p}
#done
2021-03-19 01:42:44 +00:00
2021-03-28 17:50:53 +00:00
#heading "Installing plugins"
2021-03-27 02:50:15 +00:00
#nvim --headless +PackerInstall +qa
#nvim --headless +TSUpdate +qa
2021-03-19 01:42:44 +00:00
echo
fn_exists() { declare -F "$1" > /dev/null; }
warn_path=false
install_node_deps () {
2021-03-19 01:42:44 +00:00
if [[ -z $(which npm) ]]; then
echo "npm not installed"
return
fi
2021-03-20 06:16:40 +00:00
sudo npm install -g $@
}
install_ts() {
install_node_deps typescript typescript-language-server prettier
}
install_html() {
install_node_deps vscode-html-languageserver-bin
}
install_css() {
install_node_deps vscode-css-languageserver-bin
2021-03-19 01:42:44 +00:00
}
install_rust() {
if [[ ! -e ~/.local/bin/rust-analyzer ]]; then
mkdir -p ${LSP_BIN_PATH}
curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-$(get_platform) -o ~/.local/bin/rust-analyzer
chmod +x ~/.local/bin/rust-analyzer
warn_path=true
else
echo "already installed"
fi
}
2021-03-31 11:28:50 +00:00
echo 'select languages you would be developing in.'
select lang in ${lsp_langs}; do
heading "Installing $lang language server"
install_$lang
echo
2021-03-19 01:42:44 +00:00
done
if [[ ${warn_path} = true ]]; then
echo ""
echo "Ensure ${LSP_BIN_PATH} is available in your \$PATH variable"
fi