fix: remove unused coc & omnisharp configs

This commit is contained in:
Felix Schröter 2020-09-07 12:54:12 +02:00
parent 0138aa4c70
commit f5d2923884
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
3 changed files with 0 additions and 24 deletions

View file

@ -1,11 +0,0 @@
{
"eslint.autoFixOnSave": true,
"omnisharp.path": "/etc/profiles/per-user/felschr/bin/omnisharp",
"omnisharp.useGlobalMono": "never",
"omnisharp.projectLoadTimeout": 120,
"omnisharp.enableRoslynAnalyzers": true,
"typescript.preferences.quoteStyle": "double",
"typescript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.quoteStyle": "double",
"javascript.preferences.importModuleSpecifier": "relative"
}

View file

@ -56,17 +56,6 @@ let g:lightline = {
\ }, \ },
\ } \ }
" omnisharp-vim config:
let g:OmniSharp_server_stdio = 1
let g:OmniSharp_server_path = '/etc/profiles/per-user/felschr/bin/omnisharp' " TODO use nix ref instead
let g:OmniSharp_selector_ui = 'fzf'
let g:OmniSharp_highlight_types = 3
let g:OmniSharp_typeLookupInPreview = 1
let g:ale_linters_explicit = 1
let g:ale_linters = {
\ 'cs': ['OmniSharp']
\ }
set relativenumber set relativenumber
set splitbelow set splitbelow

View file

@ -87,6 +87,4 @@ in
withNodeJs = true; withNodeJs = true;
withPython = false; withPython = false;
}; };
xdg.configFile."nvim/coc-settings.json".source = ./coc-settings.json;
} }