VIM: ALE/Coc Config
This commit is contained in:
parent
837e5418d6
commit
cb7712421c
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"languageserver": {
|
"languageserver": {
|
||||||
"ccls": {
|
"ccls": {
|
||||||
"command": "ccls",
|
"command": "ccls",
|
||||||
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
|
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
|
||||||
@ -11,25 +11,13 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"gitignore.enable": {
|
"git.addedSign.hlGroup": "GitGutterAdd",
|
||||||
"type": "boolean",
|
"git.changedSign.hlGroup": "GitGutterChange",
|
||||||
"default": true,
|
"git.removedSign.hlGroup": "GitGutterDelete",
|
||||||
"description": "Is enable gitignore"
|
"git.topRemovedSign.hlGroup": "GitGutterDelete",
|
||||||
},
|
"git.changeRemovedSign.hlGroup": "GitGutterChangeDelete",
|
||||||
"gitignore.templates.patch": {
|
"git.addGBlameToVirtualText": false,
|
||||||
"type": "object",
|
"gitignore.enable": true,
|
||||||
"default": {},
|
"diagnostic.errorSign": "✘",
|
||||||
"additionalProperties": {
|
"diagnostic.warningSign": "⚠"
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"description": "gitignore patch for exists templates (key and value format)"
|
|
||||||
},
|
|
||||||
"gitignore.templates.replace": {
|
|
||||||
"type": "object",
|
|
||||||
"default": {},
|
|
||||||
"additionalProperties": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"description": "gitignore completely replace the exists templates (key and value format)"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -65,6 +65,9 @@ let g:SimpylFold_docstring_preview = 1
|
|||||||
|
|
||||||
" Ale
|
" Ale
|
||||||
let g:ale_linters = {"python": ["flake8"], "python3": ["flake8"]}
|
let g:ale_linters = {"python": ["flake8"], "python3": ["flake8"]}
|
||||||
|
let g:ale_echo_msg_format = '[%linter%] %s [%severity%]'
|
||||||
|
let g:ale_sign_error = '✘'
|
||||||
|
let g:ale_sign_warning = '⚠'
|
||||||
|
|
||||||
|
|
||||||
" VIM-MARKDOWN
|
" VIM-MARKDOWN
|
||||||
|
Loading…
Reference in New Issue
Block a user