forked from joshuaclayton/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc
35 lines (27 loc) · 844 Bytes
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
set nocompatible
set nobackup
set nowritebackup
set history=50 " keep 50 lines of command line history
set incsearch " do incremental searching
set ignorecase
set smartcase
let mapleader = ","
let g:CommandTMaxHeigh=10
let g:CommandTMatchWindowAtTop=1
nnoremap <silent> <Leader>u :CommandTBuffer<CR>
nnoremap <silent> <leader>z :CommandT <CR>
" Snippets are activated by Shift+Tab
let g:snippetsEmu_key = "<S-Tab>"
source $HOME/.vim/autocmd.vim
source $HOME/.vim/colors.vim
source $HOME/.vim/ctags.vim
source $HOME/.vim/clipboard.vim
source $HOME/.vim/gui.vim
source $HOME/.vim/rails.vim
source $HOME/.vim/sessions.vim
source $HOME/.vim/shortcuts.vim
source $HOME/.vim/syntax_highlighting.vim
source $HOME/.vim/tab_completion.vim
source $HOME/.vim/visual.vim
source $HOME/.vim/tmux.vim
call pathogen#runtime_append_all_bundles()