From 6ecb94566cdd2b1ae3da674fa07684a549d94b90 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Thu, 23 Jan 2020 15:09:31 +0100 Subject: [PATCH] feat: update omnisharp-vim config --- home/common/init.vim | 2 ++ home/common/neovim.nix | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/home/common/init.vim b/home/common/init.vim index c64216c..97ccd80 100644 --- a/home/common/init.vim +++ b/home/common/init.vim @@ -14,10 +14,12 @@ let mapleader=" " let g:camelcasemotion_key = '' " 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'] \ } diff --git a/home/common/neovim.nix b/home/common/neovim.nix index 0798f04..d30665b 100644 --- a/home/common/neovim.nix +++ b/home/common/neovim.nix @@ -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;