Skip to content

Instantly share code, notes, and snippets.

@dharrigan
Created February 8, 2021 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dharrigan/6b55013de0d4d8b8447b5cff2f36e030 to your computer and use it in GitHub Desktop.
Save dharrigan/6b55013de0d4d8b8447b5cff2f36e030 to your computer and use it in GitHub Desktop.
coc-settings.json
  ~/.config/nvim
❯ cat coc-settings.json
{
"coc.preferences.enableFloatHighlight": true,
"coc.preferences.messageLevel": "error",
"coc.preferences.snippetStatusText": "Ⓢ ",
"coc.preferences.useQuickfixForLocations": true,
"coc.source.around.firstMatch": false,
"coc.source.buffer.firstMatch": false,
"coc.source.conjure.priority": 999999,
"suggest.autoTrigger": "always",
"suggest.detailField": "preview",
"suggest.detailMaxLength": 60,
"suggest.enablePreview": true,
"suggest.floatEnable": false,
"suggest.maxCompleteItemCount": 15,
"suggest.removeDuplicateItems": true,
"suggest.snippetIndicator": "🤔",
"suggest.timeout": 5000,
"suggest.triggerCompletionWait": 100,
"suggest.completionItemKindLabels": {
"class": "\uf0e8",
"color": "\ue22b",
"constant": "\uf8fe",
"default": "\uf29c",
"enum": "\uf435",
"enumMember": "\uf02b",
"event": "\ufacd",
"field": "\uf93d",
"file": "\uf723",
"folder": "\uf115",
"function": "\u0192",
"interface": "\uf417",
"keyword": "\uf1de",
"method": "\uf6a6",
"module": "\uf40d",
"operator": "\uf915",
"property": "\ue624",
"reference": "\ufa46",
"snippet": "\ue60b",
"struct": "\ufb44",
"text": "\ue612",
"typeParameter": "\uf728",
"unit": "\uf475",
"value": "\uf89f",
"variable": "\ue71b"
},
"languageserver": {
"clojure-lsp": {
"command": "clojure-lsp",
"filetypes": ["clojure"],
"disableDiagnostics": true,
"rootPatterns": ["deps.edn", "project.clj"],
"additionalSchemes": ["jar", "zipfile"],
"trace.server": "verbose",
"initializationOptions": {
"project-specs": [{
"project-path": "deps.edn",
"classpath-cmd": ["clj", "-Spath"]
}],
"use-metadata-for-privacy?": true,
"ignore-classpath-directories": true
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment