Merge pull request #21 from marvelman3284/main

Allow for users to be able to choose which lsps are installed
This commit is contained in:
siduck76 2021-04-06 09:34:16 +05:30 committed by GitHub
commit 088fc46d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 1 deletions

View File

@ -3,7 +3,20 @@ BASE=$(git rev-parse --show-toplevel)
LSP_BIN_PATH=$HOME/.local/bin LSP_BIN_PATH=$HOME/.local/bin
default_lsp_langs="css html ts rust python" default_lsp_langs="css html ts rust python"
lsp_langs=${@:-"$default_lsp_langs"} lsp_langs=""
choose_langs() {
read -p "Would you like to install $1 lsp?(y/n)" lang
if [ "$lang" = "y" ]
then
lsp_langs+="$1 "
fi
}
for lang in $default_lsp_langs
do
choose_langs $lang
done
pfx="~~~~~ " pfx="~~~~~ "
heading() { heading() {