nvim/coc-settings.json

34 lines
1.1 KiB
JSON
Raw Normal View History

2019-04-09 20:55:18 +00:00
{
"suggest.triggerAfterInsertEnter": false,
"suggest.autoTrigger": "none",
"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-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",
2019-06-15 13:59:03 +00:00
"coc.preferences.formatOnSaveFiletypes": ["python", "scss", "css", "vue"],
2019-06-04 15:01:02 +00:00
"eslint.enable": true,
2019-04-20 11:42:27 +00:00
"eslint.autoFixOnSave": true,
"eslint.filetypes": [
"javascript",
"vue"
2019-09-13 14:27:38 +00:00
],
"prettier.eslintIntegration": true
2019-04-09 20:55:18 +00:00
}