Disable extensions by default #4190
-
I'm trying to set up a config where I have most of my coc extensions disabled by default, and only enabled on a per-project basis using a project config / vimrc. My global config looks like this: {
"diagnostic.displayByAle": true,
"suggest.noselect": true,
"tsserver.enable": false,
"eslint.enable": false,
"html.enable": false,
"css.enable": false,
"json.enable": true,
"tailwindCSS.enable": true,
"tailwindCSS.includeLanguages": {
"jinja": "nunjucks"
},
"coc.source.OmniSharp.enable": true,
"coc.source.OmniSharp.triggerCharacters": "."
} I expected e.g. Am I missing something or is something going wrong here? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
"tsserver.enable": false
disable running of tsserver service.Use disable action in
:CocList extensions
, use<tab>
to get action list.You should
"tsserver.enable": false
if you need tsserver started for some of your project, use:CocList services
to check status of services.