diff options
author | Tharre <tharre3@gmail.com> | 2017-05-07 22:17:05 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2017-05-08 02:52:26 +0200 |
commit | 363c7d9b9d7af1e6ddd15c8805f862f0b8a6da65 (patch) | |
tree | 0dfba86da08908a5d5528e539fa9440782ce6081 | |
parent | 6bf2ae99c784457448f74b26a582990ffdb81465 (diff) | |
download | dotfiles-363c7d9b9d7af1e6ddd15c8805f862f0b8a6da65.tar.gz dotfiles-363c7d9b9d7af1e6ddd15c8805f862f0b8a6da65.tar.xz dotfiles-363c7d9b9d7af1e6ddd15c8805f862f0b8a6da65.zip |
vim: replace syntastic with ale
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | .vim/bundle/ale | 0 | ||||
m--------- | .vim/bundle/syntastic | 0 | ||||
-rw-r--r-- | .vimrc | 4 |
4 files changed, 6 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index c7ca656..8724f2e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -58,3 +58,6 @@ [submodule ".vim/bundle/vim-airline-themes"] path = .vim/bundle/vim-airline-themes url = https://github.com/vim-airline/vim-airline-themes +[submodule ".vim/bundle/ale"] + path = .vim/bundle/ale + url = https://github.com/w0rp/ale.git diff --git a/.vim/bundle/ale b/.vim/bundle/ale new file mode 160000 +Subproject 32f21751f4722abdb10b9da3b6cf088240d4642 diff --git a/.vim/bundle/syntastic b/.vim/bundle/syntastic deleted file mode 160000 -Subproject b2b125cfade75468faef6ac87742a78f2de26bf @@ -104,7 +104,9 @@ let g:airline_theme = 'powerlineish' "let g:airline#extensions#tabline#enabled = 1 " make tabs look crazy " only enable trailing whitespace checking let g:airline#extensions#whitespace#checks = [ 'trailing' ] -let g:airline#extensions#syntastic#enabled = 0 + +nmap <silent> <C-k> <Plug>(ale_previous_wrap) +nmap <silent> <C-j> <Plug>(ale_next_wrap) " Start interactive EasyAlign in visual mode (e.g. vip<Enter>) vmap <Enter> <Plug>(EasyAlign) |