Initial commit

This commit is contained in:
2021-03-30 20:01:47 +02:00
commit ddaecabe97
15 changed files with 212 additions and 0 deletions

14
ale.vim Normal file
View File

@@ -0,0 +1,14 @@
" Defines a specific list of linters, that you wish to use for a language
" Install the flake8, python-pylint packages
let g:ale_linters = {
\ 'python': ['flake8', 'pylint'],
\}
let g:ale_fixers = {
\ 'python': ['yapf'],
\}
nmap <F10> :ALEFix<CR>
let g:ale_fix_on_save = 1