From 0f0ef583c0feacf7e249be8c11547db2f05d9a2f Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 26 Mar 2019 16:08:35 +0100 Subject: Add ALE Signed-off-by: Florian Pritz --- .gitmodules | 3 +++ .vim/bundle/ale | 1 + .vimrc | 9 ++++++--- 3 files changed, 10 insertions(+), 3 deletions(-) create mode 160000 .vim/bundle/ale diff --git a/.gitmodules b/.gitmodules index edfd400..739636a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -136,3 +136,6 @@ [submodule ".vim/bundle/vim-ruby"] path = .vim/bundle/vim-ruby url = https://github.com/vim-ruby/vim-ruby.git +[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 index 0000000..32c8bd1 --- /dev/null +++ b/.vim/bundle/ale @@ -0,0 +1 @@ +Subproject commit 32c8bd1fa4629d52df27103fcf18d59c5d16b343 diff --git a/.vimrc b/.vimrc index 525b677..540adad 100644 --- a/.vimrc +++ b/.vimrc @@ -65,7 +65,9 @@ let g:tex_flavor='latex' let g:tagbar_phpctags_bin='~/git/phpctags/bin/phpctags' let g:tagbar_phpctags_memory_limit = '512M' -" }}} + +let g:ale_completion_enabled = 1 +" }}} filetype off @@ -76,7 +78,7 @@ call vundle#begin() "Plugin 'Valloric/YouCompleteMe' Plugin 'SirVer/ultisnips' "Plugin 'scrooloose/syntastic' -Plugin 'neomake/neomake' +"Plugin 'neomake/neomake' Plugin 'honza/vim-snippets' Plugin 'Shougo/unite.vim' Plugin 'Shougo/vimproc.vim' @@ -118,6 +120,7 @@ Plugin 'rhysd/vim-grammarous' Plugin 'dbeniamine/vim-mail' Plugin 'vim-ruby/vim-ruby' +Plugin 'w0rp/ale' call vundle#end() syntax on @@ -227,7 +230,7 @@ let python_highlight_all = 1 let g:tex_comment_nospell=1 " Neomake -autocmd BufWritePost * Neomake +"autocmd BufWritePost * Neomake " Syntastic let g:syntastic_enable_perl_checker = 1 -- cgit v1.2.3-24-g4f1b