diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2018-11-04 22:57:15 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2018-11-04 22:57:15 +0100 |
commit | 47d7842b96fe2d1a98ec278eece4bb702ad0f828 (patch) | |
tree | 593dee5c157be2417559e5d7b767d7366d95b91e /nvim/init.vim | |
parent | c5e40bfd2f24b26fb0ac8f6a60c3b3a810cc8f9b (diff) | |
download | dotfiles-master.tar.xz |
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'nvim/init.vim')
-rw-r--r-- | nvim/init.vim | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 7e535e2..e73dc86 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -16,11 +16,6 @@ Plug 'airblade/vim-rooter' " Fuzzy finder. Requires fzf package to be installed Plug 'junegunn/fzf.vim' -" Better language support -Plug 'autozimu/LanguageClient-neovim', { - \ 'branch': 'next', - \ 'do': 'bash install.sh', - \ } Plug 'rust-lang/rust.vim' Plug 'tpope/vim-git' @@ -42,13 +37,6 @@ let g:lightline = { " Fzf let g:fzf_command_prefix = 'Fzf' -" Language Client -let g:LanguageClient_serverCommands = { - \ 'rust': ['rustup', 'run', 'nightly', 'rls'], - \ } -let g:LanguageClient_autoStart = 1 -nnoremap <silent> <Leader>f :call LanguageClient_textDocument_formatting()<CR> - " rust.vim let g:rust_clip_command = 'xclip -selection clipboard' vnoremap <Leader>= :'<,'>RustFmtRange<CR> |