38 lines
1.2 KiB
JSON
38 lines
1.2 KiB
JSON
{
|
|
"suggest.timeout": 5000,
|
|
"suggest.enablePreview": true,
|
|
"suggest.enablePreselect": false,
|
|
"suggest.noselect": true,
|
|
"diagnostic.displayByAle": false,
|
|
"diagnostic.checkCurrentLine": true,
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.mypyEnabled": true,
|
|
"python.linting.mypyArgs": ["--ignore-missing-imports"],
|
|
"python.venvFolders": [".virtualenvs"],
|
|
"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"
|
|
]
|
|
}
|