diff options
Diffstat (limited to 'vim/files/vimrc')
-rw-r--r-- | vim/files/vimrc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/vim/files/vimrc b/vim/files/vimrc index 4677b0f..c79c016 100644 --- a/vim/files/vimrc +++ b/vim/files/vimrc @@ -119,7 +119,6 @@ if dein#tap('vim-lsp') \ 'whitelist': ['rust'], \ }) - au FileType rust setl omnifunc=lsp#complete endif if executable('ghcide') au User lsp_setup call lsp#register_server({ @@ -129,6 +128,16 @@ if dein#tap('vim-lsp') \ }) endif + function! s:on_lsp_buffer_enabled() abort + setl omnifunc=lsp#complete + setl signcolumn=yes + endfunction + + augroup lsp_install + au! + au User lsp_buffer_enabled call s:on_lsp_buffer_enabled() + augroup end + nnoremap [Lsp] <Nop> nmap <leader>l [Lsp] |