Last active
November 14, 2024 19:16
-
-
Save toruticas/85f3b079a02301597b13d4f72910551f to your computer and use it in GitHub Desktop.
CoC extensions: ~/.config/coc/extensions/package.json; CoC config: ~/.config/nvim/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
{ | |
"codeLens.enable": false, | |
"eslint.fixOnSaveTimeout": 1, | |
"suggest.noselect": false, | |
"coc.preferences.formatOnSaveFiletypes": ["*"], | |
"python.venvPath": "${env:HOME}/.pyenv/versions", | |
"python.formatting.provider": "black", | |
"python.formatting.provider": "black", | |
"python.formatting.blackPath": "${env:HOME}/.pyenv/shims/black", | |
"python.formatting.blackArgs": ["-l 120"], | |
"python.linting.enabled": false | |
} |
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
{ | |
"dependencies": { | |
"coc-eslint": ">=1.7.0", | |
"coc-git": ">=2.7.0", | |
"coc-json": ">=1.9.2", | |
"coc-prettier": ">=9.3.2", | |
"coc-snippets": ">=3.1.10", | |
"coc-tsserver": ">=2.2.0", | |
"coc-pyright": ">=1.1.385", | |
"coc-sql": ">=0.12.0", | |
"coc-java": ">=1.15.2", | |
"coc-react-refactor": ">=0.5.0" | |
}, | |
"disabled": [], | |
"locked": [], | |
"lastUpdate": 1674217134610 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment