feat: add coc-settings.json

This commit is contained in:
Felix Schröter 2020-03-13 20:06:35 +01:00 committed by Felix Schroeter
parent 68c62f6bad
commit 3f2b98392c
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{
"omnisharp.path": "/home/felschr/.nix-profile/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

@ -110,4 +110,6 @@ in
extraConfig = with builtins; readFile ./init.vim + readFile ./coc.vim;
withNodeJs = true;
};
xdg.configFile."nvim/coc-settings.json".source = ./coc-settings.json;
}