From 836a8352f432463f1f37c2184f3cb49fbb84619e Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Thu, 20 Aug 2020 10:24:41 +0200 Subject: [PATCH] vim: Remove hardcoded executable paths --- home/.config/nvim/init.vim | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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',