pick updates from ganymede
This commit is contained in:
parent
48360b9169
commit
6a49e78789
7 changed files with 123 additions and 48 deletions
35
.vim/coc-settings.json
Normal file
35
.vim/coc-settings.json
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"suggest.timeout": 5000,
|
||||
"suggest.enablePreview": true,
|
||||
"suggest.maxPreviewWidth": 70,
|
||||
"diagnostic.displayByAle": false,
|
||||
"python.linting.pylintEnabled": false,
|
||||
"python.linting.flake8Enabled": true,
|
||||
"python.linting.mypyEnabled": true,
|
||||
"python.linting.mypyArgs": ["--ignore-missing-imports"],
|
||||
"python.jediEnabled": true,
|
||||
"python.autoComplete.addBrackets": false,
|
||||
"suggest.detailField": "abbr",
|
||||
"suggest.snippetIndicator": "",
|
||||
"languageserver": {
|
||||
"ccls": {
|
||||
"command": "ccls",
|
||||
"filetypes": ["c", "cc", "cpp", "cuda", "objc", "objcpp"],
|
||||
"rootPatterns": [".ccls", "compile_commands.json", ".vim/", ".git/", ".hg/"],
|
||||
"initializationOptions": {
|
||||
"cache": {
|
||||
"directory": ".ccls-cache"
|
||||
}
|
||||
}
|
||||
},
|
||||
"golang": {
|
||||
"command": "gopls",
|
||||
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
|
||||
"filetypes": ["go"]
|
||||
}
|
||||
},
|
||||
"python.autoComplete.extraPaths": [
|
||||
"${env:SPARK_HOME}/python",
|
||||
"${env:SPARK_HOME}/python/pyspark"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue