nix-configs/hm-imports/nvim/config/coc-settings.json
Philipp Hochkamp c430b03c8f a
2023-01-18 19:39:32 +01:00

57 lines
1.5 KiB
JSON

{
"suggest.triggerCompletionWait": 50,
"semanticTokens": {
"filetypes": ["nix"]
},
"coc.preferences.formatOnSaveFiletypes": ["nix"],
"suggest.enablePreview": true,
"html.enable": true,
"python.linting.enabled": true,
"html.format.enable": true,
"html.suggest.html5": true,
"html.validate.html": true,
"html.validate.styles": true,
"diagnostic-languageserver.mergeConfig": true,
"diagnostic-languageserver.filetypes": {
"vim": "vint",
"sh": "shellcheck",
"markdown": "write-good"
},
"diagnostic-languageserver.formatFiletypes": {
"sh": "shfmt"
},
"tabnine.disable_filetypes": ["pandoc"],
"flutter.provider.hot-reload": true,
"flutter.provider.enableSnippet": true,
"snippets.ultisnips.direcories": ["snippets"],
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.cargo.allFeatures": true,
"rust-analyzer.inlayHints.refreshOnInsertMode": true,
"rust-analyzer.updates.channel": "nightly",
"html.validate.scripts": true,
"git.gitlab.hosts": ["gitlab.com"],
"git.addGBlameToVirtualText": true,
"languageserver": {
"nix": {
"command": "nil",
"filetypes": ["nix"],
"settings": {
"nil": {
"formatting": { "command": ["nixpkgs-fmt"] }
}
},
"rootPatterns": ["flake.nix"]
},
"csharp-ls": {
"command": "csharp-ls",
"filetypes": ["cs", "razor"]
},
"terraform": {
"command": "terraform-ls",
"args": ["serve"],
"filetypes": ["terraform", "tf"],
"initializationOptions": {},
"settings": {}
}
}
}