1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 19:40:29 +01:00

Use Ale instead of Syntastic

This commit is contained in:
2021-01-11 19:46:57 +01:00
parent 134a2507c4
commit 8109162eb5

6
vimrc
View File

@@ -19,6 +19,7 @@ Plug 'ericpruitt/tmux.vim'
if has("patch-8.0.1453") if has("patch-8.0.1453")
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' } Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
endif endif
Plug 'dense-analysis/ale'
Plug 'fs111/pydoc.vim', { 'for': 'python' } Plug 'fs111/pydoc.vim', { 'for': 'python' }
Plug 'gryf/dragvisuals' Plug 'gryf/dragvisuals'
Plug 'gryf/pep8-vim', { 'for': 'python' } Plug 'gryf/pep8-vim', { 'for': 'python' }
@@ -62,7 +63,6 @@ Plug 'vim-scripts/indentpython', { 'for': 'python' }
Plug 'vim-scripts/loremipsum' Plug 'vim-scripts/loremipsum'
Plug 'vim-scripts/mako.vim', { 'for': 'mako' } Plug 'vim-scripts/mako.vim', { 'for': 'mako' }
Plug 'vim-scripts/mako.vim--Torborg', { 'for': 'mako' } Plug 'vim-scripts/mako.vim--Torborg', { 'for': 'mako' }
Plug 'vim-syntastic/syntastic'
Plug 'vimwiki/vimwiki' Plug 'vimwiki/vimwiki'
Plug 'will133/vim-dirdiff' Plug 'will133/vim-dirdiff'
@@ -529,10 +529,6 @@ let g:rubber_make_on_save = 0
let g:showmarks_ignore_type = "hqprm" let g:showmarks_ignore_type = "hqprm"
let g:showmarks_include = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" let g:showmarks_include = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"}}} "}}}
"Syntastic {{{2
"don't use pylint to check since it's slow on big modules
let g:syntastic_python_checkers = ["python", "flake8"]
"}}}
"Tagbar {{{2 "Tagbar {{{2
nmap <Leader>t :Tagbar<CR> nmap <Leader>t :Tagbar<CR>
let g:tagbar_compact = 1 let g:tagbar_compact = 1