mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 19:36:28 +00:00
Remove neomake and syntastic
This commit is contained in:
parent
ba6ea9e84b
commit
970d43a694
@ -113,16 +113,6 @@ if g:vim_as_an_ide && (v:version > 703) && !g:gui.has_ctags_features
|
||||
Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files
|
||||
command! TagsUpdate :GutentagsUpdate
|
||||
end
|
||||
|
||||
" TODO: Maybe ALE. Similar reason as coc.nvim. Probably only using latest vim
|
||||
" if developing seriously
|
||||
" if !g:vim_as_an_ide || g:ale_completion_enabled
|
||||
" " Do nothing
|
||||
" elseif (has('nvim') || v:version >= 800)
|
||||
" call s:smart_source_rc('plugins/neomake')
|
||||
" else
|
||||
" call s:smart_source_rc('plugins/syntastic')
|
||||
" endif
|
||||
" }}
|
||||
|
||||
" GUI {{
|
||||
|
@ -1,12 +0,0 @@
|
||||
Plug 'neomake/neomake'
|
||||
nnoremap <F5> :Neomake<CR>
|
||||
|
||||
let g:neomake_python_enabled_makers = ['flake8']
|
||||
let g:neomake_python_pytest_maker = {
|
||||
\ 'exe': 'py.test',
|
||||
\ 'errorformat': &errorformat,
|
||||
\ }
|
||||
let g:neomake_python_tox_maker = {
|
||||
\ 'exe': 'tox',
|
||||
\ 'errorformat': &errorformat,
|
||||
\ }
|
@ -1,16 +0,0 @@
|
||||
Plug 'scrooloose/syntastic'
|
||||
if exists('loaded_syntastic')
|
||||
let g:syntastic_html_tidy_ignore_errors = [
|
||||
\ 'proprietary attribute "ng-show"',
|
||||
\ 'proprietary attribute "ng-controller"',
|
||||
\ 'proprietary attribute "ng-repeat"',
|
||||
\ 'proprietary attribute "ng-app"',
|
||||
\ 'proprietary attribute "ng-click"'
|
||||
\ ]
|
||||
let g:syntastic_python_checkers = ['flake8']
|
||||
let g:syntastic_python_flake8_args='--max-line-length=80'
|
||||
" let g:syntastic_python_checkers = ['pep8']
|
||||
" " let g:syntastic_python_pep8_args='--ignore=E501'
|
||||
" " let g:syntastic_python_checkers = ['jshint']
|
||||
" " let g:syntastic_javascript_jshint_args='--ignore=E501'
|
||||
endif
|
Loading…
Reference in New Issue
Block a user