anyone using coc.nvim know how to exclude directories like resources
from popping up during jump to definition or show references? I often end up editing these files, then being dumbfounded when my changes are ignored
Thank you so much!!!
I've been having trouble finding this config variable.
On that note, if anyone can share his coc config for clojure itโd be helpful. Thanks!
This is mine, it's rather simple, ymmv:
{
"coc.source.conjure.priority": 999999,
"diagnostic.virtualText": true,
"suggest.echodocSupport": false,
"suggest.maxCompleteItemCount": 15,
"suggest.noselect": false,
"suggest.removeDuplicateItems": true,
"suggest.enablePreview": true,
"languageserver": {
"clojure-lsp": {
"command": "bash",
"args": ["-c", "clojure-lsp"],
"filetypes": ["clojure"],
"disableDiagnostics": true,
"rootPatterns": ["deps.edn", "project.clj"],
"additionalSchemes": ["jar", "zipfile"],
"trace.server": "verbose",
"initializationOptions": {
"use-metadata-for-privacy?": true,
}
}
}
}
Thanks a lot!!!
you're most welcome