Skip to content

Instantly share code, notes, and snippets.

@andrewhummus
Created September 7, 2021 01:27
Show Gist options
  • Save andrewhummus/92e1b37b91d42f57bbf5091f279d2c53 to your computer and use it in GitHub Desktop.
Save andrewhummus/92e1b37b91d42f57bbf5091f279d2c53 to your computer and use it in GitHub Desktop.
modified coc settings
{
"codeLens.enable": true,
"coc.preferences.extensionUpdateCheck": "daily",
"coc.preferences.formatOnType": true,
"coc.preferences.willSaveHandlerTimeout": 1000,
"coc.preferences.formatOnSaveFiletypes": [
"c",
"python",
"rust",
"markdown",
"haskell"
"javascript",
"typescript",
"json",
],
"coc.source.around.firstMatch": false,
"coc.source.file.ignoreHidden": false,
"diagnostic.floatConfig": {
"border": true
},
"diagnostic.format": "%message [%source]",
"diagnostic.virtualText": false,
"diagnostic.checkCurrentLine": false
"diagnostic.separateRelatedInformationAsDiagnostics": false,
"eslint.autoFixOnSave": true,
"eslint.format.enable": true,
"eslint.packageManager": "npm",
"git.addGBlameToVirtualText": true,
"git.semanticCommit.scope": false,
"go.goplsOptions": {
"experimentalPostfixCompletions": true,
"semanticTokens": true,
"linksInHover": false,
"usePlaceholders": true,
"staticcheck": true
},
"hover.floatConfig": {
"border": true
},
"list.normalMappings": {
"<C-c>": "do:exit"
},
"list.insertMappings": {
"<C-c>": "do:exit"
},
"markdownlint.config": {
"default": true,
"line-length": false
},
"python.formatting.provider": "black",
"python.formatting.blackdHTTPHeaders": {
"X-Fast-Or-Safe": "fast"
},
"python.linting.enabled": false,
"python.analysis.diagnosticMode": "workspace",
"python.linting.pylintEnabled": false,
"signature.target": "echo",
"suggest.floatConfig": {
"border": true
},
"suggest.timeout": 5000,
"suggest.defaultSortMethod": "none",
"suggest.noselect": false,
"suggest.enablePreselect": true,
"snippets.ultisnips.enable": false,
"snippets.ultisnips.usePythonx": false,
"snippets.extends": {
"javascriptreact": [
"javascript"
],
"typescript": [
"javascript"
]
},
"typescript.format.semicolons": "ignore",
"typescript.autoClosingTags": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"typescript.preferences.useAliasesForRenames": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment