-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvimrc
138 lines (123 loc) · 3.33 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
set shell=/bin/bash
call pathogen#infect()
" ---------------- SETTINGS ----------------
syntax on
colorscheme github
autocmd! bufwritepost .vimrc source %
" platform specific settings
if has("unix")
let s:uname = system("uname")
if s:uname == "Linux\n"
set backspace=2
autocmd BufWritePre *.c,*.h Cfmt
let g:clang_library_path='/usr/lib/llvm-3.8/lib'
endif
endif
set number
set tabstop=4
set shiftwidth=4
set nocompatible
set pastetoggle=<F2>
set nobackup
set nowritebackup
set noswapfile
set wildmenu
set ruler
set cursorline
set hlsearch
set incsearch
set showmatch
set smartindent
set autoindent
set nofoldenable
set t_Co=256
set foldmethod=indent
set clipboard=unnamed
set completeopt=menuone,longest
set wildignore+=*/tmp/*,*.so,*.swp,*.zip " Linux/MacOSX
filetype on
filetype plugin on
filetype plugin indent on
au InsertLeave * set nopaste
autocmd BufEnter * :syntax sync fromstart
autocmd QuickFixCmdPost [^l]* nested cwindow
autocmd QuickFixCmdPost l* nested lwindow
autocmd BufWritePre *.go Fmt
autocmd FileType go set omnifunc=gocomplete#Complete
autocmd BufEnter * NERDTreeMirror
autocmd VimEnter * wincmd w
autocmd FileType gitcommit setlocal textwidth=80
" spellchecking
autocmd BufRead,BufNewFile *.md setlocal spell
autocmd FileType gitcommit setlocal spell
set complete+=kspell
abbrev spell setlocal spell spelllang=en_us<CR>
" handle whitespace at the end of lines
au InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
au InsertLeave * match ExtraWhitespace /\s\+$/
highlight ExtraWhitespace ctermbg=red guibg=red
" ---------------- KEY BINDINGS ----------------
map <C-j> <C-W>j
map <C-k> <C-W>k
map <C-h> <C-W>h
map <C-l> <C-W>l
nnoremap m2<cr> :m+2
nnoremap m1<cr> :m+
nnoremap m-2<cr> :m-2
nnoremap <F2> :NERDTreeToggle<CR>
nnoremap <F3> :TagbarToggle<CR>
inoremap <Nul> <C-x><C-o>
" For local replace
nnoremap gr gd[{V%:s/<C-R>///gc<left><left><left>
" For global replace
nnoremap gR gD:%s/<C-R>///gc<left><left><left>
"For a better popup
inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
inoremap <expr> <C-n> pumvisible() ? '<C-n>' :
\ '<C-n><C-r>=pumvisible() ? "\<lt>Down>" : ""<CR>'
inoremap <expr> <M-,> pumvisible() ? '<C-n>' :
\ '<C-x><C-o><C-n><C-p><C-r>=pumvisible() ? "\<lt>Down>" : ""<CR>'
" ---------------- PLUGIN SETTINGS ----------------
let g:gitgutter_max_signs = 50000
" let g:clang_make_default_keymappings = 0
let g:clang_complete_auto = 1
let g:clang_hl_errors = 1
let g:clang_auto_select = 1
let g:godef_split = 2
let g:cfmt_style = '-linux -l120'
let g:cfmt_off = 1
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
let g:ctrlp_working_path_mode = 'ra'
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/]\.(git|hg|svn)$',
\ 'file': '\v\.(exe|so|dll)$',
\ 'link': 'SOME_BAD_SYMBOLIC_LINKS',
\ }
let g:tagbar_type_go = {
\ 'ctagstype' : 'go',
\ 'kinds' : [
\ 'p:package',
\ 'i:imports:1',
\ 'c:constants',
\ 'v:variables',
\ 't:types',
\ 'n:interfaces',
\ 'w:fields',
\ 'e:embedded',
\ 'm:methods',
\ 'r:constructor',
\ 'f:functions'
\ ],
\ 'sro' : '.',
\ 'kind2scope' : {
\ 't' : 'ctype',
\ 'n' : 'ntype'
\ },
\ 'scope2kind' : {
\ 'ctype' : 't',
\ 'ntype' : 'n'
\ },
\ 'ctagsbin' : 'gotags',
\ 'ctagsargs' : '-sort -silent'
\ }