-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc
162 lines (122 loc) Β· 4.04 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
" Use Vim settings, rather then Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
set nocompatible
filetype off
" Use Vundle for all vim plugins
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
set encoding=utf-8
" Let Vundle manage itself.
Plugin 'VundleVim/Vundle.vim'
" Plugins
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/syntastic'
Plugin 'scrooloose/nerdtree'
Plugin 'Lokaltog/vim-powerline'
Plugin 'fatih/vim-go'
Plugin 'rking/ag.vim'
" Color schemes
Plugin 'altercation/vim-colors-solarized'
call vundle#end()
" ===================== ctrlp Config ====================
let ctrlp_working_path_mode = 'rc'
let g:ctrlp_custom_ignore = '\v[\/](\.git|\.hg|\.svn)$'
let g:Powerline_symbols = 'fancy'
" ================ General Config ====================
set number "Line numbers are good
set mouse=a "Mainly for mousewheel scrolling
set backspace=indent,eol,start "Allow backspace in insert mode
set history=1000 "Store lots of :cmdline history
set showcmd "Show incomplete cmds down the bottom
set showmode "Show current mode down the bottom
set gcr=a:blinkon0 "Disable cursor blink
set autoread "Reload files changed outside vim
" One less key to press
nmap ; :
imap jk <Esc>
" This makes vim act like all other editors, buffers can
" exist in the background without being in a window.
" http://items.sjbach.com/319/configuring-vim-right
set hidden
"turn on syntax highlighting
syntax enable
" don't build go binaries on save
let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck']
" ================ Search Settings =================
set incsearch "Find the next match as we type the search
set hlsearch "Highlight searches by default
set viminfo='100,f1 "Save up to 100 marks, enable capital marks
" ================ Turn Off Swap Files ==============
set noswapfile
set nobackup
set nowb
" ================ Persistent Undo ==================
" Keep undo history across sessions, by storing in file.
" Only works in MacVim (gui) mode.
if has('gui_running')
set undodir=~/.vim/backups
set undofile
endif
" ================ Indentation ======================
function! ToggleIndent()
if &shiftwidth == 2
set shiftwidth=4
set softtabstop=4
else
set shiftwidth=2
set shiftwidth=2
endif
endfunction
com! Ci call ToggleIndent()
com! Trail :%s/\s\+$//g
set autoindent
set smartindent
set smarttab
set expandtab
set shiftwidth=2
set softtabstop=2
set tabstop=4
filetype plugin indent on
set nowrap "Don't wrap lines
set linebreak "Wrap lines at convenient points
" ================ Folds ============================
set foldmethod=indent "fold based on indent
set nofoldenable "dont fold by default
" ================ Completion =======================
set wildmode=list:longest
set wildmenu "enable ctrl-n and ctrl-p to scroll thru matches
set wildignore=*.o,*.obj,*~ "stuff to ignore when tab completing
set wildignore+=*vim/backups*
" ================ Scrolling ========================
set scrolloff=8 "Start scrolling when we're 8 lines away from margins
set sidescrolloff=15
set sidescroll=1
" ================ Miscellaneous ==============
"case insensitive search
set ignorecase
set smartcase
"search/replace word under cursor
nnoremap <Leader>s :s/\<<C-r><C-w>\>/
"search/replace word under cursor whole file
nnoremap <Leader>S :%s/\<<C-r><C-w>\>/
" YCM go-to definition
nnoremap <Leader>jd :YcmCompleter GoToDefinitionElseDeclaration<CR>
" set colorscheme before highlight settings
set t_Co=256
:let g:solarized_termcolors=256
set background=dark
colorscheme solarized
" trailing whitespace highlighting
highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+$/
autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
autocmd InsertLeave * match ExtraWhitespace /\s\+$/
autocmd BufWinLeave * call clearmatches()
" Open NERDTree
autocmd VimEnter * NERDTree
autocmd VimEnter * wincmd w
" Load custom local settings
if filereadable(expand("~/.vimrc_local"))
source ~/.vimrc_local
endif