mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-04 12:00:29 +00:00
Merge pull request #21 from marvelman3284/main
Allow for users to be able to choose which lsps are installed
This commit is contained in:
commit
088fc46d7b
15
install.sh
15
install.sh
@ -3,7 +3,20 @@ BASE=$(git rev-parse --show-toplevel)
|
||||
LSP_BIN_PATH=$HOME/.local/bin
|
||||
|
||||
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="~~~~~ "
|
||||
heading() {
|
||||
|
Loading…
Reference in New Issue
Block a user