summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.vimrc12
1 files changed, 10 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc
index 8d3df97..d65b174 100644
--- a/.vimrc
+++ b/.vimrc
@@ -15,8 +15,16 @@ set ttym=xterm2 " make buffer mouse dragging work also in tmux
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE
noremap <C-left> :bprev<CR>
-noremap <C-right> :bnext<CR>
-
+noremap <C-right> :bnext<CR>
+" alternatively:
+" http://stackoverflow.com/a/12230039
+"set hidden
+"noremap <C-TAB> :bnext<CR>
+"noremap <C-S-TAB> :bprev<CR>
+
+" omnicompletion to C-space?
+"inoremap <C-Space> <C-x><C-o>
+"inoremap <C-@> <C-Space>
execute pathogen#infect()
execute pathogen#infect('~/.vim/vim4projects/{}')