e8b2a559f37fab3200c82dc91140b88a7d06176c
dblume Soften the status line colo...

dblume authored 11 months ago

1) " Version 2024-03-17.1 - status line color tweak
David Blume first commit

David Blume authored 9 years ago

2) set nocompatible    " Use Vim defaults, forget compatibility with vi.
3) set bs=2            " allow backspacing over everything in insert mode
4) set wildmenu        " Allows command-line completion with tab
5) set autoindent      " Copy indent from current line when starting a new line
6) set smartindent     " Do smart auto indenting when starting  new line
7) set smarttab        " Honor 'shiftwidth', 'tabstop' or 'softtabstop'
8) set hlsearch        " highlight all matches for previous search
dblume Better fold settings for zA

dblume authored 1 year ago

9) set foldlevel=99
David Blume first commit

David Blume authored 9 years ago

10) set nowrap          " no wrapping text lines on the screen (exceptions below)
11) set sidescroll=5
dblume May use nbsp in PS1; add it...

dblume authored 2 years ago

12) set listchars+=tab:>-,precedes:<,extends:>,nbsp:· " for :set list
dblume Add - as a word character

dblume authored 1 year ago

13) set iskeyword+=-    " Add - to list of non-word-breaking chars.
dblume Starting trial with vim 'in...

dblume authored 1 year ago

14) set incsearch       " Navigate to matched strings while typing. Toggle: :set is!
dblume Set scrolloff to 0, EC2 def...

dblume authored 11 months ago

15) set scrolloff=0     " EC2 defaults to 5. Set explicitly to be consistent
dblume Vim to delete comment char...

dblume authored 10 months ago

16) set formatoptions+=j " Delete comment character when joining commented lines.
dblume Improve Esc key reaction, f...

dblume authored 10 months ago

17) set ttimeoutlen=100 " Affects Esc key, not leader.
dblume .vimrc needs explicit "noru...

dblume authored 10 months ago

18) set noruler         " Don't show cursor pos on right side of status bar
dblume tmux and vim to set termina...

dblume authored 9 months ago

19) set title           " Set the title in the terminal window
David Blume first commit

David Blume authored 9 years ago

20) 
21) if v:version >= 703
22)   " Do save the undo tree to file, but not in the local directory.
23)   " Don't forget to mkdir ~/.vim_undo
24)   set undodir=~/.vim_undo,.
25)   set undofile        " undo even after closing and reopening a file
26) endif
27) 
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

28) " Make j and k move to the next row, not file line
29) nnoremap j gj
30) nnoremap k gk
31) 
32) " From Steve Losh: http://learnvimscriptthehardway.stevelosh.com/chapters/10.html
dblume Use j and k for navigating...

dblume authored 2 years ago

33) " Map jk to ESC in insert mode (except when navigating popup menu)
34) inoremap <expr> jk pumvisible() ? '' : '<esc>'
35) inoremap <expr> j pumvisible() ? '<Down>' : 'j'
36) inoremap <expr> k pumvisible() ? '<Up>' : 'k'
dblume Map Tab and CR to pull-up-m...

dblume authored 10 months ago

37) inoremap <expr> <Tab> pumvisible() ? '<Down>' : '<Tab>'
38) inoremap <expr> <S-Tab> pumvisible() ? '<Up>' : '<S-Tab>'
39) inoremap <expr> <cr> pumvisible() ? '<C-y>' : '<cr>'
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

40) 
dblume Add easier window navigation.

dblume authored 2 years ago

41) " https://stevelosh.com/blog/2010/09/coming-home-to-vim/#s3-why-i-came-back-to-vim
42) nnoremap <leader>v <C-w>v<C-w>l
43) nnoremap <C-h> <C-w>h
44) nnoremap <C-j> <C-w>j
45) nnoremap <C-k> <C-w>k
46) nnoremap <C-l> <C-w>l
47) 
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

48) " clear search highlights
49) nnoremap <cr> :noh<cr><cr>
David Blume first commit

David Blume authored 9 years ago

50) 
dblume Have terminal emulator send...

dblume authored 9 months ago

51) " tmux 3.2+ doesn't send C-i, so have Alacritty iTerm2 map C-i to <leader>i
52) " iTerm2: Settings > Keys > Key Bindings > + > Shortcut:^i Action:Send Text "\i"
53) nnoremap <leader>i <C-i>
54) " Use (Shift-)Tab to navigate buffers, retain C-i/C-o for jumps.
dblume bash PROMPT_COMMAND to set...

dblume authored 9 months ago

55) " Test with this:
dblume Have terminal emulator send...

dblume authored 9 months ago

56) " nvim -Nu NONE +'nno <C-i> :echom "C-i pressed"<cr>' +'nno <tab> :echom "Tab pressed"<cr>'
57) "if stridx(expand($TERM), 'xterm') == 0
58)   nnoremap <C-i> <C-i>
59)   nmap <Tab> :bn<cr>
60) "endif
dblume Restore Ctrl-i (Tab) to mea...

dblume authored 9 months ago

61) nnoremap <S-Tab> :bp<cr>
dblume tab key navigation of buffers

dblume authored 1 year ago

62) 
dblume Remap Y to yank to end of l...

dblume authored 11 months ago

63) " Use yy to yank a whole line, use Y to yank to end of line like C and D
64) nnoremap Y y$
65) 
David Blume first commit

David Blume authored 9 years ago

66) syntax on
67) 
68) set t_Co=256
69) if v:version >= 703
70)   set colorcolumn=80
71) endif
72) if has('gui_running') " Didn't work: if &term != 'builtin_gui'
73)   " Light backgrounds for GUI experiences
74)   set background=light
75)   " colorscheme peaksea                        " install peaksea
76)   colorscheme tolerable                        " install tolerable
77)   if v:version >= 703
78)     highlight ColorColumn ctermbg=255 guibg=#F6F6F6
79)   endif
dblume nvim ColorColumn was inverted

dblume authored 11 months ago

80)   highlight statusline   ctermfg=17 ctermbg=Gray  " override scheme
81)   highlight statuslineNC ctermfg=20 ctermbg=LightGray  " override scheme
David Blume Specify a font for gvim on...

David Blume authored 4 years ago

82)   if has('win32')
83)     set guifont=DejaVu_Sans_Mono_for_Powerline:h10:cANSI:qDRAFT
84)   endif
David Blume first commit

David Blume authored 9 years ago

85)   set lines=50 columns=100
86) else
87)   " Dark backgrounds for tty experiences
88)   set background=dark
89)   colorscheme desert                           " install desert
90)   if v:version >= 703
David Blume Windows PuTTY shows ctermbg...

David Blume authored 6 years ago

91)     highlight ColorColumn ctermbg=233 guibg=Black " dark gray (or 17, dark blue)
David Blume first commit

David Blume authored 9 years ago

92)   endif
dblume Make the normal statusbar m...

dblume authored 10 months ago

93)   highlight statusline   ctermfg=23 ctermbg=250  " override scheme
dblume Change hightlight of curren...

dblume authored 10 months ago

94) "  highlight User1        ctermfg=250 ctermbg=30
dblume Soften the status line colo...

dblume authored 11 months ago

95)   highlight statuslineNC ctermfg=237 ctermbg=Gray  " override scheme
dblume Better statusline color.

dblume authored 2 years ago

96)   highlight MatchParen   term=reverse ctermbg=23  " 23 is more subtle than default
David Blume first commit

David Blume authored 9 years ago

97) endif
dblume Better statusline color.

dblume authored 2 years ago

98) 
dblume Vim insert mode's blue shou...

dblume authored 10 months ago

99) au InsertEnter * hi statusline guibg=Cyan ctermfg=25 guifg=Black ctermbg=248
dblume Make the normal statusbar m...

dblume authored 10 months ago

100) au InsertLeave * hi statusline term=bold,reverse cterm=bold,reverse ctermfg=23 ctermbg=250 guifg=black guibg=#c2bfa5
dblume Maybe I like these statusli...

dblume authored 1 year ago

101) 
David Blume first commit

David Blume authored 9 years ago

102) " set mouse=v     " visual mode, not working great for PuTTY
103) 
104) set tags=tags;/
105) 
dblume Make vim StatuslineGit() re...

dblume authored 11 months ago

106) set history=500
dblume Update vim statusline to pr...

dblume authored 1 year ago

107) set laststatus=2
108) 
dblume Retrieve git branch only on...

dblume authored 11 months ago

109) function! GitBranch()
dblume Make vim StatuslineGit() re...

dblume authored 11 months ago

110)   let l:branchname = system("git -C " . expand('%:p:h') . " rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'")
dblume vim to use the "git branch"...

dblume authored 10 months ago

111)   return strlen(l:branchname) > 0 ? '  │  '.l:branchname : ''
dblume Update vim statusline to pr...

dblume authored 1 year ago

112) endfunction
113) 
dblume Only show encoding and form...

dblume authored 10 months ago

114) function! EncodingAndFormat()
115)   if (len(&fileencoding) && &fileencoding != 'utf-8') || &fileformat != 'unix'
116)     return &fileencoding?&fileencoding:&encoding .'['. &fileformat . '] │ '
117)   endif
118)   return ''
119) endfunction
120) 
dblume Make "set ruler!" change st...

dblume authored 10 months ago

121) function! OnRuler()
122)   if &ruler
123)     return '│ '.line('.').':'.col('.').' '
124)   endif
125)   return ''
126) endfunction
127) 
dblume Default to mode() if not in...

dblume authored 1 year ago

128) function! Current_mode()
129)   let l:currentmode={
dblume Update vim statusline to pr...

dblume authored 1 year ago

130)     \ 'n'  : 'NORMAL',
131)     \ 'v'  : 'VISUAL',
132)     \ 'V'  : 'V·LINE',
133)     \ '' : 'V·BLOCK',
134)     \ 's'  : 'SELECT',
135)     \ 'S'  : 'S·LINE',
136)     \ 'i'  : 'INSERT',
dblume Default to mode() if not in...

dblume authored 1 year ago

137)     \ 'r'  : 'I·REPLACE',
dblume Update vim statusline to pr...

dblume authored 1 year ago

138)     \ 'R'  : 'REPLACE',
139)     \ 'Rv' : 'V·REPLACE',
140)     \ 'c'  : 'COMMAND',
141)     \}
dblume Default to mode() if not in...

dblume authored 1 year ago

142)     return get(l:currentmode, mode(), mode())
143) endfunction
dblume Update vim statusline to pr...

dblume authored 1 year ago

144) 
145) function! Trim_brackets(fn)
dblume Support older vim on raspi

dblume authored 1 year ago

146)   if v:version > 800
147)     return trim(a:fn, "[]")
148)   else
149)     return a:fn
150)   endif
dblume Update vim statusline to pr...

dblume authored 1 year ago

151) endfunction
152) 
dblume Default to mode() if not in...

dblume authored 1 year ago

153) set statusline=\ %{Current_mode()}
dblume Update vim statusline to pr...

dblume authored 1 year ago

154) set statusline+=%{&paste?'\ \ ·\ PASTE':''}
dblume Retrieve git branch only on...

dblume authored 11 months ago

155) set statusline+=%{b:git_branch}
dblume vimrc use box drawing vertical

dblume authored 1 year ago

156) set statusline+=\ │\ %f
dblume Default to mode() if not in...

dblume authored 1 year ago

157) set statusline+=%m
158) set statusline+=\ %r
159) set statusline+=\ %=
dblume Update vim statusline to pr...

dblume authored 1 year ago

160) set statusline+=%h
dblume Default to mode() if not in...

dblume authored 1 year ago

161) set statusline+=\ %{Trim_brackets(&filetype)}
162) set statusline+=\ %#StatusLineNC#
dblume Only show encoding and form...

dblume authored 10 months ago

163) set statusline+=\ %{b:enc_fmt}
164) set statusline+=%p%%\ of
dblume Drop column and line number...

dblume authored 11 months ago

165) set statusline+=\ %L\ 
dblume Make "set ruler!" change st...

dblume authored 10 months ago

166) set statusline+=%{OnRuler()}
David Blume first commit

David Blume authored 9 years ago

167) 
168) set encoding=utf-8
169) 
dblume No comments after key mappi...

dblume authored 2 years ago

170) " Fast saving
171) nmap <leader>w :w!<cr>
David Blume first commit

David Blume authored 9 years ago

172) " I use relative number for cursor movement.
173) nmap <leader>r :set relativenumber!<cr>
174) nmap <leader>n :set number!<cr>
175) 
176) " Useful mappings for managing tabs
dblume Remove bad vim mappings for...

dblume authored 2 years ago

177) " Tab Previous: gT or C-PageUp
178) " Tab Next: gt or C-PageDown
David Blume first commit

David Blume authored 9 years ago

179) nmap <leader>tn :tabnew
180) nmap <leader>to :tabonly<cr>
181) nmap <leader>tc :tabclose<cr>
182) nmap <leader>tm :tabmove
dblume Add shortcuts for tab selec...

dblume authored 2 years ago

183) nmap <leader>1 1gt
184) nmap <leader>2 2gt
185) nmap <leader>3 3gt
186) nmap <leader>4 4gt
187) nmap <leader>5 5gt
188) nmap <leader>6 6gt
189) nmap <leader>7 7gt
190) nmap <leader>8 8gt
191) nmap <leader>9 9gt
dblume Use <leader>o OpenCurrentAs...

dblume authored 2 years ago

192) 
193) " Open current buffer in new tab. Close with C-w,c
194) " https://vim.fandom.com/wiki/Maximize_window_and_return_to_previous_split_structure
195) function! OpenCurrentAsNewTab()
dblume Restore entire window view...

dblume authored 2 years ago

196)     let l:currentView = winsaveview()
dblume Use <leader>o OpenCurrentAs...

dblume authored 2 years ago

197)     tabedit %
dblume Restore entire window view...

dblume authored 2 years ago

198)     call winrestview(l:currentView)
dblume Use <leader>o OpenCurrentAs...

dblume authored 2 years ago

199) endfunction
200) nmap <leader>o :call OpenCurrentAsNewTab()<CR>
David Blume first commit

David Blume authored 9 years ago

201) 
202) " pastetoggle
203) nmap <leader>p :set invpaste paste?<cr>
204) 
David Blume Add mapping to paste onto n...

David Blume authored 6 years ago

205) " Control+p to paste onto next line
206) nmap <C-p> :pu<cr>
207) 
David Blume Will use netrw's Explore in...

David Blume authored 3 years ago

208) " Make netrw's Explore behave a little like NERDTreeToggle
209) " http://vimcasts.org/blog/2013/01/oil-and-vinegar-split-windows-and-project-drawer/
David Blume Remove NERDTree and use net...

David Blume authored 4 years ago

210) function! ToggleNetrw()
David Blume Improve the toggling of the...

David Blume authored 3 years ago

211)   if bufwinnr("NetrwTreeListing") > 0
212)     for i in range(1, bufnr("$"))
213)       if (getbufvar(i, "&filetype") == "netrw")
David Blume Use netrw Vexplore to assur...

David Blume authored 3 years ago

214)         silent exe "bwipeout " . i
David Blume Improve the toggling of the...

David Blume authored 3 years ago

215)         return
216)       endif
217)     endfor
218)   endif
David Blume Use netrw Vexplore to assur...

David Blume authored 3 years ago

219)   silent Vexplore %:p:h
David Blume Remove NERDTree and use net...

David Blume authored 4 years ago

220) endfunction
221) nmap <leader>e :call ToggleNetrw()<cr>
222) 
dblume No comments after key mappi...

dblume authored 2 years ago

223) " install taglist
224) let Tlist_GainFocus_On_ToggleOpen = 1  " Jump to taglist window on open
225) let Tlist_Exit_OnlyWindow = 1          " if you are the last, kill yourself
226) let Tlist_Close_On_Select = 1          " Close taglist window on select
dblume Update taglist to 4.6 in vi...

dblume authored 10 months ago

227) let Tlist_Inc_Winwidth = 0             " Only needed for neovim in tmux
dblume No comments after key mappi...

dblume authored 2 years ago

228) nmap <leader>l :TlistToggle<cr>
229) 
230) " install vim-bbye
231) nmap <leader>bd :Bdelete<cr>
David Blume first commit

David Blume authored 9 years ago

232) 
233) " Visual mode mappings
234) """
235) 
236) " map sort function to a key
237) vnoremap <leader>s :sort<cr>
238) 
239) "easier moving of code blocks
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

240) vnoremap < <gv
241) vnoremap > >gv
David Blume first commit

David Blume authored 9 years ago

242) 
243) " If too many file system events are getting triggered.
244) set nobackup       " ~ files
245) set nowritebackup  " Don't write buff to temp, delete orig, rename temp to orig
246) set noswapfile     " .swp files
247) 
248) " Allow tags to open another buffer even if this one is modified
249) set hidden
250) 
251) " Switch between source and header files
252) function! SwitchSourceHeader()
253)   let s:ext  = expand("%:e")
254)   let s:base = expand("%:t:r")
255)   let s:cmd  = "find " . s:base
256)   if (s:ext == "cpp" || s:ext == "c")
257)     if findfile(s:base . ".h"  ) != "" | exe s:cmd . ".h"   | return | en
258)     if findfile(s:base . ".hpp") != "" | exe s:cmd . ".hpp" | return | en
259)   else
260)     if findfile(s:base . ".cpp") != "" | exe s:cmd . ".cpp" | return | en
261)     if findfile(s:base . ".c"  ) != "" | exe s:cmd . ".c"   | return | en
262)   endif
263) endfunc
264) 
265) " Demonstrates a way to look in a mirror directory
266) " function! OpenOther()
267) "    if expand("%:e") == "cpp"
268) "      exe "split" fnameescape(expand("%:p:r:s?src?include?").".h")
269) "    elseif expand("%:e") == "h"
270) "      exe "split" fnameescape(expand("%:p:r:s?include?src?").".cpp")
271) "    endif
272) " endfunc
273) 
274) " Delete trailing white space on save, useful for Python and CoffeeScript ;)
275) function! DeleteTrailingWS()
276)   exe "normal mz"
277)   %s/\s\+$//ge
278)   exe "normal `z"
279) endfunc
280) 
David Blume Add OpenInOtherWindow to .v...

David Blume authored 8 years ago

281) function! OpenInOtherWindow()
282)   if winnr('$') == 1
283)     exe "wincmd F"
284)   else
285)     let curNum = winnr()
286)     let oldBuf = bufnr( "%" )
287)     if curNum == 1
288)       let othNum = 2
289)     else
290)       let othNum = 1
291)     endif
292)     exe "normal! gF"
293)     let newBuf = bufnr( "%" )
294)     let newLine = line(".")
295)     exe 'hide buf' oldBuf
296)     exe othNum . "wincmd w"
297)     exe 'hide buf' newBuf
298)     exe "normal! " . newLine . "G"
299)   endif
300) endfunc
301) 
302) nmap <silent> <leader>F :call OpenInOtherWindow()<cr>
dblume Make OpenInOtherWindow easier.

dblume authored 2 years ago

303) nmap <silent> <leader>f :call OpenInOtherWindow()<cr>
David Blume Add OpenInOtherWindow to .v...

David Blume authored 8 years ago

304) 
David Blume first commit

David Blume authored 9 years ago

305) if has("autocmd")
306)   autocmd BufWrite *.py :call DeleteTrailingWS()  " Delete trailing whitespace
307)   " Don't let smartindent unindent the # character in Python files
308)   autocmd FileType python  inoremap # X<c-h>#
dblume expand tabs for Python

dblume authored 1 year ago

309)   autocmd FileType python,c,cpp,php,brs,sh  set expandtab  " Use spaces instead of tabs
David Blume first commit

David Blume authored 9 years ago

310)   autocmd Filetype make    setl noexpandtab       " ...not for files that use tabs.
311) 
312)   " Use the vim command %retab before applying the following
313)   " two with files that have 8-space tabs.
David Blume Add .vimrc tab values for ....

David Blume authored 8 years ago

314)   autocmd FileType c,cpp,python,php  set tabstop=4
dblume Remove some lines, allow mo...

dblume authored 2 years ago

315)   autocmd FileType c,cpp,php  set shiftwidth=4
David Blume first commit

David Blume authored 9 years ago

316) 
317)   autocmd FileType python  set foldmethod=indent  " 'za' to fold
318) 
David Blume Disable vim-airline whitesp...

David Blume authored 6 years ago

319)   autocmd FileType c,cpp nmap <buffer> <leader>s :call SwitchSourceHeader()<cr>
David Blume first commit

David Blume authored 9 years ago

320)   autocmd FileType c,cpp set foldmethod=syntax
321) 
dblume Improve focus-based switchi...

dblume authored 10 months ago

322) " https://jeffkreeftmeijer.com/vim-number/
323) augroup numbertoggle
324)   autocmd!
325)   autocmd BufEnter,FocusGained,InsertLeave,WinEnter * if &nu && mode() != "i" | set rnu   | endif
326)   autocmd BufLeave,FocusLost,InsertEnter,WinLeave   * if &nu                  | set nornu | endif
327) augroup END
David Blume first commit

David Blume authored 9 years ago

328) 
dblume Remove some lines, allow mo...

dblume authored 2 years ago

329)   autocmd BufRead *.txt set wrap linebreak   " "soft" wrap of existing lines
330)   autocmd BufRead README set wrap linebreak  " "soft" wrap of existing lines
dblume Add .local/bin to $PATH

dblume authored 2 years ago

331)   autocmd BufRead *.rs :setlocal tags=./rusty-tags.vi;/
David Blume first commit

David Blume authored 9 years ago

332) 
dblume Always start on first line...

dblume authored 11 months ago

333)   " When editing a file, always jump to the last cursor position...
David Blume first commit

David Blume authored 9 years ago

334)   autocmd BufReadPost *
dblume Improve Esc key reaction, f...

dblume authored 10 months ago

335)   \ if &ft != "gitcommit" && line("'\"") > 0 && line ("'\"") <= line("$") |
dblume When openging files jump to...

dblume authored 9 months ago

336)   \   exe "normal! g`\"" |
David Blume first commit

David Blume authored 9 years ago

337)   \ endif
dblume Improve Esc key reaction, f...

dblume authored 10 months ago

338)   " ...except for gitcommit where we always want to start at the top (nvim)
dblume Always start on first line...

dblume authored 11 months ago

339)   autocmd FileType gitcommit exe "normal! gg"
dblume Retrieve git branch only on...

dblume authored 11 months ago

340) 
dblume Only show encoding and form...

dblume authored 10 months ago

341)   autocmd BufNewFile,BufReadPost *
342)   \ let b:git_branch = GitBranch() |
343)   \ let b:enc_fmt = EncodingAndFormat()
344)   autocmd BufEnter *
345)   \ let b:git_branch = GitBranch() |
346)   \ let b:enc_fmt = EncodingAndFormat()
David Blume first commit

David Blume authored 9 years ago

347) endif
348) 
349) " This requires vim to be compiled with +python
350) " Use auto complete in insert mode with ctrl-x, ctrl-o
351) " See :help new-omni-completion for more.
352) filetype plugin on
353) set omnifunc=syntaxcomplete#Complete
dblume Completion tweaks

dblume authored 2 years ago

354) 
355) " Torn on whether I like the omni completion preview window left open or not.
356) " autocmd CompleteDone * pclose
357) 
358) " Omni completion via ctrl-space (in addition to ctrl-x ctrl-o)
359) inoremap <Nul> <C-x><C-o>
360) 
dblume Add commands SynStack and H...

dblume authored 10 months ago

361) " These two commands display syntax/highlight info for what's under the cursor.
362) if exists(":SynStack") != 2
363)     command SynStack :echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")')
364) endif
365) 
366) function! SynGroup()
367)     let l:s = synID(line('.'), col('.'), 1)
368)     echo synIDattr(l:s, 'name') . ' -> ' . synIDattr(synIDtrans(l:s), 'name')
369) endfun
370) command Hi :call SynGroup()
371) 
David Blume Add cscope support

David Blume authored 7 years ago

372) " cscope
373) if has("cscope")
374)     set cscopetag  " Use both cscope and ctag for 'ctrl-]'
David Blume I prefer ctags to be search...

David Blume authored 7 years ago

375)     set csto=1     " 0=cscope first; 1=ctags first
dblume Use QuickFix for cscope.

dblume authored 2 years ago

376)     set cscopequickfix=s-,c-,d-,i-,t-,e-,a- " cscope to quickfix window
377) 
David Blume Use local cscope.out databa...

David Blume authored 3 years ago

378)     set nocsverb
379)     " add any database in current directory
380)     if filereadable("cscope.out")
381)         cs add cscope.out
382)     " else add database pointed to by environment
383)     elseif $CSCOPE_DB != ""
384)         cs add $CSCOPE_DB
385)     endif
386)     set csverb
David Blume Add cscope support

David Blume authored 7 years ago

387) endif
388) 
David Blume Sort QuickFix tool by filen...

David Blume authored 3 years ago

389) " From https://stackoverflow.com/questions/15393301/how-to-automatically-sort-quickfix-entries-by-line-text-in-vim
390) " :grep term %
391) " :grep -r term path/
392) " :cw
393) " :ccl (or C-w,q)
dblume QuickFix window: only sort...

dblume authored 2 years ago

394) autocmd! QuickfixCmdPost * call MaybeSortQuickfix('QfStrCmp')
395) 
396) function! MaybeSortQuickfix(fn)
397) "    exe 'normal! '  " Doesn't work. Wanted to jump back to where we were.
398)     let t = getqflist({'title': 1}).title
dblume QuickFix sorts for 'vimgrep...

dblume authored 2 years ago

399)     " Only sort the files if for search-style commands, not "make".
dblume Follow up integrate ripgrep...

dblume authored 2 years ago

400)     if stridx(t, "cs ") == 0 || stridx(t, ":gr") == 0 || stridx(t, ":vim") == 0 || stridx(t, ":rg") == 0
dblume QuickFix window: only sort...

dblume authored 2 years ago

401)         call setqflist(sort(getqflist(), a:fn), 'r')
402)         call setqflist([], 'r', {'title': t})
403)     endif
404)     cwindow
David Blume Sort QuickFix tool by filen...

David Blume authored 3 years ago

405) endfunction
406) 
407) function! QfStrCmp(e1, e2)
408)     let [t1, t2] = [bufname(a:e1.bufnr), bufname(a:e2.bufnr)]
409)     return t1 <# t2 ? -1 : t1 ==# t2 ? 0 : 1
410) endfunction
411) 
dblume Integrate ripgrep into vim.

dblume authored 2 years ago

412) " Use ripgrep for search instead of grep
413) if executable('rg')
414)     " set grepprg=rg\ --vimgrep\ --hidden\ —glob '!.git'
415)     set grepprg=rg
416) endif
417) " Navigate quickfix list with ease
418) nnoremap <silent> [q :cprevious<CR>
419) nnoremap <silent> ]q :cnext<CR>
420) 
dblume Add DiffOrig from the vim h...

dblume authored 10 months ago

421) " From `:help :DiffOrig`.
dblume Make "set ruler!" change st...

dblume authored 10 months ago

422) if exists(":DiffOrig") != 2
423)   command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_
dblume Add DiffOrig from the vim h...

dblume authored 10 months ago

424)     \ | diffthis | wincmd p | diffthis
dblume Make "set ruler!" change st...

dblume authored 10 months ago

425) endif
dblume Add DiffOrig from the vim h...

dblume authored 10 months ago

426) 
David Blume Add tip for using Roboto Mo...

David Blume authored 6 years ago

427) " I use Roboto Mono from https://github.com/powerline/fonts
David Blume Change from vim-powerline t...

David Blume authored 6 years ago

428) " On iTerm2, Preferences -> Profiles -> Text -> Font
David Blume Add tip for using Roboto Mo...

David Blume authored 6 years ago

429) " Cygwin64 won't let you choose it. Launch Cygwin64 as follows:
430) " C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico -o Font="Roboto Mono for Powerline" -
David Blume Change from vim-powerline t...

David Blume authored 6 years ago

431) 
David Blume Remove NERDTree and use net...

David Blume authored 4 years ago

432) " Settings that make netrw more like NERDTree
433) let g:netrw_banner = 0
434) let g:netrw_liststyle = 3
David Blume Use netrw Vexplore to assur...

David Blume authored 3 years ago

435) let g:netrw_browse_split = 4
David Blume Remove NERDTree and use net...

David Blume authored 4 years ago

436) let g:netrw_altv = 1
David Blume Use netrw Vexplore to assur...

David Blume authored 3 years ago

437) " set g:netrw_winsize to negative for absolute width, positive for relative
438) let g:netrw_winsize = -36
439) " let g:netrw_winsize = 35
David Blume Remove NERDTree and use net...

David Blume authored 4 years ago

440) " sort is affecting only: directories on the top, files below
441) let g:netrw_sort_sequence = '[\/]$,*'
David Blume Change from vim-powerline t...

David Blume authored 6 years ago

442) 
dblume Added vim-rooter.

dblume authored 2 years ago

443) " Experimenting with vim-rooter
444) let g:rooter_patterns = ['.git', 'Makefile', 'builds/']
dblume Make vim-rooter manual.

dblume authored 2 years ago

445) let g:rooter_cd_cmd = 'lcd'
446) let g:rooter_manual_only = 1