diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim index c3d54f7..2f1633b 100644 --- a/home/.config/nvim/init.vim +++ b/home/.config/nvim/init.vim @@ -107,7 +107,7 @@ Plug 'autozimu/LanguageClient-neovim', { \ } let g:LanguageClient_serverCommands = { - \ 'rust': ['~/.cargo/bin/rustup', 'run', 'stable', 'rls'], + \ 'rust': ['rustup', 'run', 'stable', 'rls'], \ 'go': ['gopls'], \ 'python': ['pyls'], \ 'typescript': ['docker', 'run', '--rm', '--init', '-i', '-v', '$HOME:$HOME:ro', '--network=none', 'r.sbruder.de/javascript-typescript-langserver'], @@ -143,9 +143,6 @@ Plug 'lervag/vimtex' let g:tex_flavor='latex' let g:vimtex_view_method='zathura' let g:tex_conceal='abdmg' -" nvr is (currently) not in debian repos and therefore installed with pip (in -" local directory that is not in zathura’s PATH) -let g:vimtex_compiler_progname='$HOME/.local/bin/nvr' let g:vimtex_syntax_autoload_packages = [ \'amsmath', \'luacode',