diff --git a/README.md b/README.md index 2daddcf..36ca6e8 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Run this in TMUX: - Debian / Ubuntu ```bash -sudo apt install tmux -y +sudo apt install tmux gcc unzip -y wget https://github.com/neovim/neovim/releases/download/nightly/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 @@ -19,6 +19,18 @@ tmux source ~/.tmux.conf ln -s ~/.pgr-linux-defaults/nvim/ ~/.config/nvim mkdir ~/.local/share/nvim ln -s ~/.pgr-linux-defaults/nvim_plugins/ ~/.local/share/nvim/plugged + +sudo wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh +sudo chmod +x /usr/local/bin/oh-my-posh +mkdir ~/.poshthemes +wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/themes.zip -O ~/.poshthemes/themes.zip +unzip ~/.poshthemes/themes.zip -d ~/.poshthemes +chmod u+rw ~/.poshthemes/*.omp.* +rm ~/.poshthemes/themes.zip + +echo $'eval \"$(oh-my-posh init bash) \"' >> ~/.bashrc +echo $'eval \"$( oh-my-posh init bash --config ~/.poshthemes/dracula.omp.json)\"' >> ~/.bashrc +exec bash ``` diff --git a/nvim/after/plugin/lsp.lua b/nvim/after/plugin/lsp.lua index c58ee78..16559a0 100644 --- a/nvim/after/plugin/lsp.lua +++ b/nvim/after/plugin/lsp.lua @@ -5,7 +5,6 @@ lsp.preset("recommended") lsp.ensure_installed({ 'tsserver', 'eslint', - 'sumneko_lua', 'rust_analyzer', 'pyright', })