VIM: ALE/Coc Config

This commit is contained in:
Tobias Manske 2022-06-28 02:51:41 +02:00
parent 837e5418d6
commit cb7712421c
Signed by: tobias
GPG Key ID: E83C743C1FC2F79A
2 changed files with 13 additions and 22 deletions

View File

@ -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)"
}
} }

View File

@ -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