1
0
Fork 0

feat: ALE: Asynchronous Lint Engine

This commit is contained in:
Michel 2022-06-16 14:08:02 +02:00
parent 493b7fe44b
commit 3794584e4f
3 changed files with 13 additions and 0 deletions

3
.gitmodules vendored
View File

@ -1,6 +1,9 @@
[submodule "abolish"]
path = pack/5_dev/start/abolish
url = https://github.com/tpope/vim-abolish.git
[submodule "ALE"]
path = pack/5_dev/opt/ale
url = https://github.com/dense-analysis/ale.git
[submodule "asterisk"]
path = pack/3_extra/start/asterisk
url = https://github.com/haya14busa/vim-asterisk.git

1
pack/5_dev/opt/ale Submodule

@ -0,0 +1 @@
Subproject commit 560e6340ce10ce90fac587096fb147eea43e624d

9
vimrc
View File

@ -602,6 +602,15 @@ autocmd FileType cpp setlocal comments^=:/// foldmethod=syntax foldlevel=0
" abolish-coercion
" camelCase MixedCase _snake_case UPPERCASE -dash-case dot.case space Title
"" ALE {{{2
""
"" Optional: Asynchronous Lint Engine
packadd! ale
let g:ale_linters = {'sh': ['shellcheck']}
let g:ale_linters_explicit=1
"" Commentary {{{2
""