-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
265 lines (239 loc) · 5.9 KB
/
Copy pathvimrc
File metadata and controls
265 lines (239 loc) · 5.9 KB
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
" Vundle {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set nocompatible
filetype off
if has("win32") || has("win64")
if has("nvim")
set rtp+=~/AppData/Local/nvim/bundle/Vundle.vim
else
set rtp+=~/.vim/bundle/Vundle.vim
endif
else
set rtp+=~/.vim/bundle/Vundle.vim
endif
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'jlanzarotta/bufexplorer'
Plugin 'easymotion/vim-easymotion'
Plugin 'will133/vim-dirdiff'
Plugin 'jonathanfilip/vim-lucius'
Plugin 'yegappan/taglist'
Plugin 'romainl/Vim-cool'
Plugin 'junegunn/fzf.vim'
call vundle#end()
filetype plugin indent on
source /usr/share/doc/fzf/examples/fzf.vim
" }}}
" General {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set nocp
set nobk
set ffs=unix,dos,mac
set history=500
set iskeyword+=-
let mapleader = ","
let g:mapleader = ","
" }}}
" UI {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"set lsp=0
set wildmenu
set wildmode=list:longest
set ru
let halfcols = &columns / 2
exe 'set ruf=%'. halfcols .'(%f\ %m%=%l,%c%V\ %P%)'
set backspace=2
"set so=5
set magic
set noerrorbells
set novisualbell
set t_vb=
set t_ti= t_te=
" }}}
" Theme, Colors, Formatting, Layout {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
syntax enable
set bg=dark
try
let g:lucius_no_term_bg=1
let g:lucius_contrast='low'
colorscheme lucius
catch /^Vim\%((\a\+)\)\=:E185/
colorscheme desert
endtry
set t_Co=256
set hls
set is
set wrap
set ai
set si
set cin
set tw=80
set smarttab
set fo=tcroqnl
set cinoptions=:0,l1,t0,g0
set listchars+=tab:^-
set ts=8
set sw=8
set sts=0
set noexpandtab
fu! TabToggle()
if &expandtab
set sw=8
set sts=0
set noexpandtab
else
set sw=4
set sts=4
set expandtab
endif
endfu
" }}}
" Files, Backups {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set nobackup
set nowb
set noswapfile
set hid
set dict=/usr/share/dict/words
" }}}
" Mappings, Abbreviations {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
map <Up> gk
map k gk
imap <Up> <C-o>gk
map <Down> gj
map j gj
imap <Down> <C-o>gj
imap kj <Esc>
nmap <leader>h :let &hlsearch = !&hlsearch<CR>
nmap <leader>bb :e#<CR>
nmap <leader>f :FZF<CR>
"nmap <leader>n :echo "strlen(".expand("<cword>").")=".strlen(expand("<cword>"))<CR>
nmap <leader>s :ConqueTerm bash<cr>
"nmap <leader>t :call <SID>ToggleCsto()<CR>
nmap <leader>t :FufTag<CR>
nmap <leader>q :call <SID>ToggleQf()<CR>
nmap <leader>u :call <SID>ToggleHex()<CR>
nmap <leader>w <Plug>(easymotion-bd-W)
nmap <leader>x :call NERDComment(0, "toggle")<CR>
nmap <leader>y :YRShow<CR>
nmap <F8> :TlistToggle<CR>
nmap <F9> :let &cul = !&cul<CR>
set pt=<F10>
nmap <F11> :let &list = !&list<CR>
nmap <F12> mz:execute TabToggle()<CR>'z
" }}}
" Plugin Settings {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let b:VCSCommandMapPrefix = ",v"
let g:bufExplorerDefaultHelp=0
let g:bufExplorerShowRelativePath=1
let g:bufExplorerSplitOutPathName=0
let g:DirDiffExcludes="CVS,.svn,.git,.*cmd,*.o"
let g:DirDiffIgnore = "Id:,Revision:,Date:"
let g:DirDiffAddArgs = "-w"
let g:cool_total_matches = 1
" }}}
" Ctags, Cscope {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let tagfiles = glob("`find ~/.vim/bundle/ -name tags -print`")
let &tags = substitute(tagfiles, "\n", ",", "g")
set tags+=./tags,./TAGS,tags;~,TAGS:~
if glob("~/.vim/doc/*") != ""
helptags ~/.vim/doc
set tags+=~/.vim/doc/tags
en
fu! s:MyCsAdd(file)
let path = findfile(a:file, ".;")
if path != ''
exe 'cs add' path
else
" echo a:file "not found"
endif
endf
"fu! s:ToggleCsto()
"if &csto == '0'
"set csto=1
"echo "set csto=1 (tags first)"
"else
"set csto=0
"echo "set csto=0 (cscope first)"
"endif
"endf
if has("cscope")
set csprg=/usr/bin/cscope
set csto=0
set cscopequickfix=s-,c-,d-,i-,t-,e-
set nocsverb
if filereadable("cscope.out")
cs add cscope.out
else
call <SID>MyCsAdd("cscope.out")
endif
set csverb
nmap <C-_>s :cs find s <C-R>=expand("<cword>")<CR><CR>
nmap <C-_>g :cs find g <C-R>=expand("<cword>")<CR><CR>
nmap <C-_>d :cs find d <C-R>=expand("<cword>")<CR><CR>
nmap <C-_>c :cs find c <C-R>=expand("<cword>")<CR><CR>
nmap <C-_>t :cs find t <C-R>=expand("<cword>")<CR><CR>
nmap <C-_>e :cs find e <C-R>=expand("<cword>")<CR><CR>
nmap <C-_>f :cs find f <C-R>=expand("<cfile>")<CR><CR>
nmap <C-_>i :cs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
endif
" }}}
" Functions {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
fu! s:ToggleQf()
for i in range(1, winnr('$'))
let bnum = winbufnr(i)
if getbufvar(bnum, '&buftype') == 'quickfix'
ccl
return
endif
endfor
cope
endf
fu! s:ToggleHex()
" hex mode should be considered a read-only operation
" save values for modified and read-only for restoration later,
" and clear the read-only flag for now
let l:modified=&mod
let l:oldreadonly=&readonly
let &readonly=0
let l:oldmodifiable=&modifiable
let &modifiable=1
if !exists("b:editHex") || !b:editHex
" save old options
let b:oldft=&ft
let b:oldbin=&bin
" set new options
setlocal binary " make sure it overrides any textwidth, etc.
let &ft="xxd"
" set status
let b:editHex=1
" switch to hex editor
%!xxd
else
" restore old options
let &ft=b:oldft
if !b:oldbin
setlocal nobinary
endif
" set status
let b:editHex=0
" return to normal editing
%!xxd -r
endif
" restore values for modified and read only state
let &mod=l:modified
let &readonly=l:oldreadonly
let &modifiable=l:oldmodifiable
endfu
" }}}
" Auto commands {{{
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
au BufRead *.[chxsS] nmap <C-]> :exe "tj ".expand("<cword>")<CR>
au Syntax asm runtime! ~/.vim/syntax/gas.vim
" }}}
" vim: set fdm=marker: