Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/coc-settings.json
2021-12-27 21:04:49 -08:00

39 lines
875 B
JSON

{
"codeLens.enable": true,
"languageserver": {
"vimls": {
"command": "vim-language-server",
"args": ["--stdio"],
"initializationOptions": {
"isNeovim": true,
"iskeyword": "@,48-57,_,192-255,-#",
"vimruntime": "",
"runtimepath": "",
"diagnostic": {
"enable": true
},
"indexes": {
"runtimepath": true,
"gap": 100,
"count": 3,
"projectRootPatterns" : ["strange-root-pattern", ".git", "autoload", "plugin"]
},
"suggest": {
"fromVimruntime": true,
"fromRuntimepath": false
}
},
"filetypes": [ "vim" ]
},
"sql": {
"command": "sql-language-server",
"args" : ["up", "--method", "stdio"],
"filetypes": ["sql", "mysql"]
},
"graphql": {
"command": "graphql-lsp",
"args": ["server", "-m", "stream"],
"filetypes": ["typescript", "typescriptreact", "graphql"]
}
}
}