Last active
October 14, 2020 07:02
-
-
Save ramidem/586c84679f91bc939bc14e70ec8a2319 to your computer and use it in GitHub Desktop.
coc-settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"coc.preferences.formatOnSaveFiletypes": [ | |
"css", | |
"html", | |
"json", | |
"python", | |
"graphql", | |
"markdown", | |
"javascript", | |
"typescript", | |
"typescript.tsx", | |
"typescriptreact", | |
"javascriptreact" | |
], | |
"python.linting.enabled": true, | |
"python.linting.pylintEnabled": true, | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
"javascript": "javascriptreact", | |
"typescript": "typescriptreact" | |
}, | |
"diagnostic.errorSign": "•", | |
"diagnostic.warningSign": "•", | |
"diagnostic.infoSign": "•", | |
"diagnostic.enableHighlightLineNumber": false, | |
"snippets.userSnippetsDirectory": "~/.config/nvim/snips" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment