aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Singleton <msingleton@aclu.org>2020-09-15 09:25:50 -0500
committerMatt Singleton <msingleton@aclu.org>2020-09-15 09:25:50 -0500
commit6e74ee215cfe13befd459e6c63cfb1eb8aac7676 (patch)
tree348fbda58ca9d967fa65d1c4b21e59a41701e358
parent9e02bc8057446d5a93e9e9f80976a0128ebce58e (diff)
replace syntastic with ale
-rw-r--r--vimrc20
1 files changed, 1 insertions, 19 deletions
diff --git a/vimrc b/vimrc
index eb1b235..7168808 100644
--- a/vimrc
+++ b/vimrc
@@ -17,11 +17,11 @@ Bundle 'kien/ctrlp.vim'
Bundle 'pangloss/vim-javascript'
Bundle 'jnwhiteh/vim-golang'
Bundle 'chase/vim-ansible-yaml'
-Bundle 'scrooloose/syntastic'
Bundle 'airblade/vim-gitgutter'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'tpope/vim-eunuch'
+Plugin 'dense-analysis/ale'
"
" behavior
@@ -133,24 +133,6 @@ let g:ctrlp_map ='<leader>a'
nnoremap <leader>vl :let g:solarized_visibility="low" | colo solarized<Enter>
nnoremap <leader>vh :let g:solarized_visibility="high" | colo solarized<Enter>
-" syntastic
-let g:syntastic_check_on_open = 1
-let g:syntastic_python_flake8_args = "--ignore=E501"
-let g:syntastic_sh_shellcheck_args = "-x"
-function! ToggleSyntasticErrors()
- if !exists('w:syn_errors_enabled')
- let w:syn_errors_enabled = 0
- endif
- if w:syn_errors_enabled
- lclose
- let w:syn_errors_enabled = 0
- else
- Errors
- let w:syn_errors_enabled = 1
- endif
-endfunction
-nnoremap <leader>r :call ToggleSyntasticErrors()<Enter>
-
"
" visual