summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules6
m---------vim/bundle/airline0
m---------vim/bundle/ale0
m---------vim/bundle/bufexplorer0
m---------vim/bundle/fugitive0
m---------vim/bundle/gitgutter0
m---------vim/bundle/gnupg0
m---------vim/bundle/neocomplete0
m---------vim/bundle/pathogen0
m---------vim/bundle/syntastic0
m---------vim/bundle/tagbar0
-rw-r--r--vimrc6
12 files changed, 3 insertions, 9 deletions
diff --git a/.gitmodules b/.gitmodules
index 9c0130f..aff28c9 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -19,12 +19,12 @@
[submodule "ctrlp"]
path = vim/bundle/ctrlp
url = https://github.com/kien/ctrlp.vim.git
-[submodule "syntastic"]
- path = vim/bundle/syntastic
- url = https://github.com/scrooloose/syntastic.git
[submodule "neocomplete"]
path = vim/bundle/neocomplete
url = https://github.com/Shougo/neocomplete.vim.git
[submodule "gnupg"]
path = vim/bundle/gnupg
url = https://github.com/jamessan/vim-gnupg.git
+[submodule "ale"]
+ path = vim/bundle/ale
+ url = https://github.com/w0rp/ale.git
diff --git a/vim/bundle/airline b/vim/bundle/airline
-Subproject ea98b42a0d7ee7888bcdbb5235b1a704526db1c
+Subproject ac9e4092ef044bea79653e204e8c02e10674cca
diff --git a/vim/bundle/ale b/vim/bundle/ale
new file mode 160000
+Subproject f1e80b800cc8c8488c9561b0db07304157ae489
diff --git a/vim/bundle/bufexplorer b/vim/bundle/bufexplorer
-Subproject fef1f3936505d0e56a9c0111db92fe2738d7673
+Subproject 9e1e111cc4655d2bb574051793624c89a59e1ec
diff --git a/vim/bundle/fugitive b/vim/bundle/fugitive
-Subproject aac85a268e89a6c8be79341e130ac90256fadbd
+Subproject 87c1bda4d5573185a1f79c42a919c4b62bc34c4
diff --git a/vim/bundle/gitgutter b/vim/bundle/gitgutter
-Subproject 26c6b549f287b8ae348eda083e7c77f79f4de28
+Subproject 1c034be0d31168c8f4770ef7b69adb67d00d6f3
diff --git a/vim/bundle/gnupg b/vim/bundle/gnupg
-Subproject 28e0be4cd2986049ed135522ab29bc77ab33842
+Subproject 5103285d4d59cc9d2d56e6e897b8efbbb460b77
diff --git a/vim/bundle/neocomplete b/vim/bundle/neocomplete
-Subproject 38f6f183edc665b8c9f52dd1546dae2c4cc7e29
+Subproject 9617d825c0d4acdb18aec903e9c1c0443058d18
diff --git a/vim/bundle/pathogen b/vim/bundle/pathogen
-Subproject 8c91196cfd9c8fe619f35fac6f2ac81be10677f
+Subproject 020ab25c38f62627c1dab6c7a851176c6ad309f
diff --git a/vim/bundle/syntastic b/vim/bundle/syntastic
deleted file mode 160000
-Subproject a0f5b72f14fba99f91b07580d0a11c96900fb24
diff --git a/vim/bundle/tagbar b/vim/bundle/tagbar
-Subproject 7b36c46d17d57db34fdb0adac9ba6382d0bb5e6
+Subproject 959f48798136bfd4ce60075d3c86c580fcf5e5c
diff --git a/vimrc b/vimrc
index af11d10..aa77027 100644
--- a/vimrc
+++ b/vimrc
@@ -82,7 +82,6 @@ nmap tn :tabnew<CR>
nmap tc :tabclose<CR>
noremap <silent> <F3> :BufExplorerHorizontalSplit<CR>
nnoremap <silent> <F4> :TagbarToggle<CR>
-nnoremap <silent> <F6> :SyntasticCheck<CR>
" disable arrow keys
noremap <Up> <Nop>
@@ -120,11 +119,6 @@ let g:bufExplorerShowNoName=1
"let g:airline_theme='wombat'
let g:airline#extensions#whitespace#enabled=0
-" Syntastic settings
-let g:syntastic_check_on_wq=0 " don't check when closing buffers
-let g:syntastic_aggregate_errors=1 " run every checker
-let g:syntastic_mode_map = { 'mode': 'passive' }
-
" neocomplete settings
let g:neocomplete#enable_at_startup=1