nvim/coc-settings.json

41 lines
1.2 KiB
JSON
Raw Normal View History

2019-04-09 20:55:18 +00:00
{
"suggest.triggerAfterInsertEnter": false,
2019-12-06 11:33:49 +00:00
"suggest.autoTrigger": "always",
"suggest.noselect": true,
"suggest.snippetIndicator": "►",
"suggest.timeout": 1000,
"suggest.echodocSupport": true,
"signature.enable": true,
"diagnostic.enable": true,
"diagnostic.warningSign": "λ",
"diagnostic.errorSign": "Λ",
"diagnostic.infoSign": "λ",
"diagnostic.hintSign": "λ",
"coc.source.buffer.ignoreGitignore": true,
2019-12-13 11:06:18 +00:00
"javascript.validate.enable": false,
2019-06-04 15:01:02 +00:00
"vetur.format.defaultFormatter.js": "prettier-eslint",
"vetur.format.defaultFormatter.html": "prettier",
"vetur.format.defaultFormatter.scss": "prettier",
2019-06-15 13:59:03 +00:00
"scss.validate": true,
2019-06-04 15:01:02 +00:00
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "/home/ray/.local/bin/flake8",
"python.linting.lintOnSave": true,
"python.formatting.provider": "black",
"python.formatting.blackPath": "/home/ray/.local/bin/black",
2020-05-10 13:15:31 +00:00
"coc.preferences.formatOnSaveFiletypes": ["python", "vue"],
2020-08-14 20:18:52 +00:00
"sh.enable": true,
"sh.highlightParsingErrors": true,
2019-06-04 15:01:02 +00:00
2021-01-03 23:47:46 +00:00
"css.validate": true,
"stylelint.enable": true,
"stylelint.autoFixOnSave": true,
"prettier.requireConfig": true,
"eslint.enable": true,
2019-04-20 11:42:27 +00:00
"eslint.autoFixOnSave": true,
"eslint.filetypes": [
"javascript",
"vue"
2020-05-10 13:15:31 +00:00
]
2019-04-09 20:55:18 +00:00
}