diff options
author | Florian Pritz <bluewind@xinu.at> | 2019-03-26 16:08:35 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2019-03-27 15:29:46 +0100 |
commit | 0f0ef583c0feacf7e249be8c11547db2f05d9a2f (patch) | |
tree | 9a9047996ed340d19e2a9b8e04a08299904576f7 | |
parent | cac99915d9ddbb9fa895542e5a3212745674fdd7 (diff) | |
download | dotfiles-0f0ef583c0feacf7e249be8c11547db2f05d9a2f.tar.gz dotfiles-0f0ef583c0feacf7e249be8c11547db2f05d9a2f.tar.xz |
Add ALE
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | .vim/bundle/ale | 0 | ||||
-rw-r--r-- | .vimrc | 9 |
3 files changed, 9 insertions, 3 deletions
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 +Subproject 32c8bd1fa4629d52df27103fcf18d59c5d16b34 @@ -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 |