diff options
author | Tharre <tharre3@gmail.com> | 2016-11-28 20:32:57 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-11-28 20:39:14 +0100 |
commit | 9d692a2c5bdba01d2c47788494764acbafeb6950 (patch) | |
tree | 50d96ab3a590a5d4ba51f5666de1c011c5c8e3d2 | |
parent | 6db4b10745cbdf2fcc379f0954011739389d35e2 (diff) | |
download | dotfiles-9d692a2c5bdba01d2c47788494764acbafeb6950.tar.gz dotfiles-9d692a2c5bdba01d2c47788494764acbafeb6950.tar.xz dotfiles-9d692a2c5bdba01d2c47788494764acbafeb6950.zip |
vim: add supertab
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | .vim/bundle/supertab | 0 | ||||
-rw-r--r-- | .vimrc | 3 |
3 files changed, 6 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index 37db6d4..2f6e599 100644 --- a/.gitmodules +++ b/.gitmodules @@ -46,3 +46,6 @@ [submodule ".vim/bundle/vim-gnupg"] path = .vim/bundle/vim-gnupg url = https://github.com/jamessan/vim-gnupg.git +[submodule ".vim/bundle/supertab"] + path = .vim/bundle/supertab + url = https://github.com/ervandew/supertab.git diff --git a/.vim/bundle/supertab b/.vim/bundle/supertab new file mode 160000 +Subproject cdaa5c27c5a7f8b08a43d0b2e65929512299e33 @@ -113,3 +113,6 @@ nmap <leader>o :ProjectOpen<cr> " ctrlp let g:ctrlp_max_files = 1000000 let g:ctrlp_cmd = 'CtrlPMixed' + +" supertab +let g:SuperTabDefaultCompletionType = "context" |