Updates Readme and LSP Config
This commit is contained in:
parent
663f9b40de
commit
92917898bd
|
|
@ -3,7 +3,7 @@
|
||||||
Run this in TMUX:
|
Run this in TMUX:
|
||||||
- Debian / Ubuntu
|
- Debian / Ubuntu
|
||||||
```bash
|
```bash
|
||||||
sudo apt install tmux gcc unzip -y
|
sudo apt install git curl tmux gcc g++ unzip -y
|
||||||
wget https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.deb
|
wget https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.deb
|
||||||
sudo dpkg -i nvim-linux64.deb
|
sudo dpkg -i nvim-linux64.deb
|
||||||
git clone https://gitlab.deniedgaming.de/-/ide/project/herz/pgr-linux-defaults.git .pgr-linux-defaults
|
git clone https://gitlab.deniedgaming.de/-/ide/project/herz/pgr-linux-defaults.git .pgr-linux-defaults
|
||||||
|
|
@ -16,6 +16,7 @@ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
||||||
ln ~/.pgr-linux-defaults/.tmux.conf ~/.tmux.conf
|
ln ~/.pgr-linux-defaults/.tmux.conf ~/.tmux.conf
|
||||||
ln -s ~/.pgr-linux-defaults/.tmux ~/.tmux
|
ln -s ~/.pgr-linux-defaults/.tmux ~/.tmux
|
||||||
tmux source ~/.tmux.conf
|
tmux source ~/.tmux.conf
|
||||||
|
mkdir ~/.config
|
||||||
ln -s ~/.pgr-linux-defaults/nvim/ ~/.config/nvim
|
ln -s ~/.pgr-linux-defaults/nvim/ ~/.config/nvim
|
||||||
mkdir ~/.local/share/nvim
|
mkdir ~/.local/share/nvim
|
||||||
ln -s ~/.pgr-linux-defaults/nvim_plugins/ ~/.local/share/nvim/plugged
|
ln -s ~/.pgr-linux-defaults/nvim_plugins/ ~/.local/share/nvim/plugged
|
||||||
|
|
@ -53,7 +54,7 @@ filemanager = <leader> + pv
|
||||||
telescope = <leader> + pf
|
telescope = <leader> + pf
|
||||||
install lsp = :Mason -> select -> i
|
install lsp = :Mason -> select -> i
|
||||||
|
|
||||||
|
*Most LSPs need NPM installed. I reccomend installing via NVM*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,12 @@ local lsp = require("lsp-zero")
|
||||||
|
|
||||||
lsp.preset("recommended")
|
lsp.preset("recommended")
|
||||||
|
|
||||||
lsp.ensure_installed({
|
--lsp.ensure_installed({
|
||||||
'tsserver',
|
-- 'tsserver',
|
||||||
'eslint',
|
-- 'eslint',
|
||||||
'rust_analyzer',
|
-- 'rust_analyzer',
|
||||||
'pyright',
|
-- 'pyright',
|
||||||
})
|
--})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue