dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.config/nvim/coc-settings.json

72 lines
2.4 KiB
JSON

{
"languageserver": {
"efm": {
"command": "efm-langserver",
"args": [],
// custom config path
// "args": ["-c", "/path/to/your/config.yaml"],
"filetypes": [
"vim",
"html",
"sh",
"javascript",
"css",
"markdown",
"yaml"
]
}
},
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"html",
"css",
"json",
"jsonc",
"sh"
],
"codeLens.enable": true,
"diagnostic.errorSign": "X",
"diagnostic.warningSign": "!",
"diagnostic.infoSign": "●",
/* "diagnostic-languageserver.mergeConfig": true, */
/* "diagnostic-languageserver.filetypes": { */
/* // lint `sh` (includes `bash`) files */
/* "sh": "shellcheck", */
/* "html": "prettier", */
/* "vim": "vint" */
/* }, */
/* "diagnostic-languageserver.formatFiletypes": { */
/* // format `sh` (includes `bash`) files using formatter defined below */
/* "sh": "shfmt" */
/* }, */
/* "diagnostic-languageserver.formatters": { */
/* // define our formatter so that we can reference it from */
/* // `diagnostic-languageserver.formatFiletypes` */
/* "shfmt": { */
/* "command": "shfmt", */
/* // all the below args are entirely optional */
/* // primarily listed here to call out that flags which take an */
/* // argument (such as `-i <num-spaces>` for specifying indentation) */
/* // should be split into two strings, the flag and then the value */
/* "args": ["-p", "-ci", "-sr"] */
/* } */
/* }, */
"list.alignColumns": true,
"suggest.echodocSupport": true,
"suggest.maxPreviewWidth": 100,
"snippets.ultisnips.enable": true,
"snippets.loadFromExtensions": true,
"snippets.extends": {
"javascriptreact": ["javascript"],
"typescript": ["javascript"]
},
"tailwindCSS.emmetCompletions": true,
"tsserver.npm": "/home/deadguy/.config/yarn/bin/yarn",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true
}