feat: update omnisharp-vim config

This commit is contained in:
Felix Schröter 2020-01-23 15:09:31 +01:00 committed by Felix Schroeter
parent 81ec695e2e
commit 6ecb94566c
2 changed files with 3 additions and 2 deletions

View file

@ -14,10 +14,12 @@ let mapleader=" "
let g:camelcasemotion_key = '<leader>'
" omnisharp-vim config:
let g:OmniSharp_start_without_solution = 1
let g:OmniSharp_server_stdio = 1
let g:OmniSharp_server_path = '/home/felschr/.nix-profile/bin/omnisharp'
let g:OmniSharp_selector_ui = 'fzf'
let g:OmniSharp_highlight_types = 3
let g:ale_linters_explicit = 1
let g:ale_linters = {
\ 'cs': ['OmniSharp']
\ }

View file

@ -73,7 +73,6 @@ in
editorconfig-vim
fzf-vim
lightline-vim
lightline-ale
nerdtree
vim-startify
vim-polyglot
@ -87,7 +86,6 @@ in
# nvim-lsp # nixos-rebuild currently fails
ale
vim-orgmode
vim-nix
@ -102,6 +100,7 @@ in
coc-stylelint
# coc-omnisharp # not really maintained
ale # only used for omnisharp-vim
omnisharp-vim
];
extraConfig = with builtins; readFile ./init.vim + readFile ./coc.vim;