summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL/arch-install2
-rw-r--r--INSTALL/artix-install2
-rw-r--r--INSTALL/gentoo-install3
-rw-r--r--INSTALL/parabola-install4
-rw-r--r--neovim/.config/nvim/init.vim2
5 files changed, 8 insertions, 5 deletions
diff --git a/INSTALL/arch-install b/INSTALL/arch-install
index 13db148..b8f123a 100644
--- a/INSTALL/arch-install
+++ b/INSTALL/arch-install
@@ -47,7 +47,7 @@ curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
## Installing Plugins
nvim -c PlugInstall
cd ~/.config/nvim/plugged/vim-hexokinase && make hexokinase
-doas npm -g install clangd
+npm -g install clangd pyright typescript typescript-language-server --prefix ~/.local/share/npm
# Setup Git account
printf "Do yo want to setup Git account? [Y/n]" && read -r GIT
diff --git a/INSTALL/artix-install b/INSTALL/artix-install
index 9c66456..fabf69d 100644
--- a/INSTALL/artix-install
+++ b/INSTALL/artix-install
@@ -47,7 +47,7 @@ curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
## Installing Plugins
nvim -c PlugInstall
cd ~/.config/nvim/plugged/vim-hexokinase && make hexokinase
-doas npm -g install clangd
+npm -g install clangd pyright typescript typescript-language-server --prefix ~/.local/share/npm
# Setup Git account
printf "Do yo want to setup Git account? [Y/n]" && read -r GIT
diff --git a/INSTALL/gentoo-install b/INSTALL/gentoo-install
index 36c0696..b4f213f 100644
--- a/INSTALL/gentoo-install
+++ b/INSTALL/gentoo-install
@@ -64,7 +64,8 @@ else
## Installing Plugins
nvim -c PlugInstall
cd ~/.config/nvim/plugged/vim-hexokinase && make hexokinase
- doas npm -g install clangd
+ npm -g install clangd pyright typescript typescript-language-server --prefix ~/.local/share/npm
+
# Setup Git account
printf "Do yo want to setup Git account? [Y/n]" && read -r GIT
diff --git a/INSTALL/parabola-install b/INSTALL/parabola-install
index 20b5aa4..32eb0f1 100644
--- a/INSTALL/parabola-install
+++ b/INSTALL/parabola-install
@@ -28,7 +28,7 @@ doas rc-update add cupsd default
# bluej netbeans jdk11-openjdk java11-openjfx intellij-idea-community-edition valgrind doxygen gdb mysql-workbench octave android-studio android-sdk pycharm-community-edition unity ssms nodejs adobexd
# Building Folder Structure
-mkdir -p ~/Documents/PDF ~/Documents/Markdown ~/Documents/Disks ~/Documents/Archives ~/Documents/VMs ~/Downloads ~/Games/WINEPREFIX ~/Pictures/Screenshots ~/Pictures/GIMP ~/Videos/Recordings ~/Code ~/.config/git ~/.config/gnupg ~/.config/wallpaper ~/.config/X11 ~/Mount
+mkdir -p ~/Documents/PDF ~/Documents/Markdown ~/Documents/Disks ~/Documents/Archives ~/Documents/VMs ~/Downloads ~/Games/WINEPREFIX ~/Pictures/Screenshots ~/Pictures/GIMP ~/Videos/Recordings ~/Code ~/.config/git ~/.config/gnupg ~/.config/wallpaper ~/.config/X11 ~/Mount ~/.local/share/pass
doas sh -c 'echo "export _JAVA_AWT_WM_NONREPARENTING=1" >>/etc/profile.d/jre.sh'
chsh -s /bin/zsh
@@ -50,7 +50,7 @@ curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
## Installing Plugins
nvim -c PlugInstall
cd ~/.config/nvim/plugged/vim-hexokinase && make hexokinase
-doas npm -g install clangd
+npm -g install clangd pyright typescript typescript-language-server --prefix ~/.local/share/npm
# Setup Git account
printf "Do yo want to setup Git account? [Y/n]" && read -r GIT
diff --git a/neovim/.config/nvim/init.vim b/neovim/.config/nvim/init.vim
index 0a4cfef..6faaf4a 100644
--- a/neovim/.config/nvim/init.vim
+++ b/neovim/.config/nvim/init.vim
@@ -90,6 +90,8 @@ map <C-n> :NERDTreeToggle<CR>
" LSP Configuration
lua << EOF
require'lspconfig'.clangd.setup{}
+require'lspconfig'.pyright.setup{}
+require'lspconfig'.tsserver.setup{}
EOF
"" LSP Autocomplete