vim: Remove hardcoded executable paths
This commit is contained in:
parent
6a406cb9e4
commit
836a8352f4
|
@ -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',
|
||||
|
|
Reference in a new issue