4d6529950749533e869b60d87dcfb5997c1f9415
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

1) " Version 2023-04-26.1 - Harmonize the git commands for common recipes
David Blume first commit

David Blume authored 8 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 8 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
David Blume first commit

David Blume authored 8 years ago

13) 
14) if v:version >= 703
15)   " Do save the undo tree to file, but not in the local directory.
16)   " Don't forget to mkdir ~/.vim_undo
17)   set undodir=~/.vim_undo,.
18)   set undofile        " undo even after closing and reopening a file
19) endif
20) 
21) " The following two lines set the use of perl regex, aka "very magic"
22) nnoremap / /\v
23) vnoremap / /\v
24) 
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

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

dblume authored 1 year ago

30) " Map jk to ESC in insert mode (except when navigating popup menu)
31) inoremap <expr> jk pumvisible() ? '' : '<esc>'
32) inoremap <expr> j pumvisible() ? '<Down>' : 'j'
33) inoremap <expr> k pumvisible() ? '<Up>' : 'k'
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

34) 
dblume Add easier window navigation.

dblume authored 2 years ago

35) " https://stevelosh.com/blog/2010/09/coming-home-to-vim/#s3-why-i-came-back-to-vim
36) nnoremap <leader>v <C-w>v<C-w>l
37) nnoremap <C-h> <C-w>h
38) nnoremap <C-j> <C-w>j
39) nnoremap <C-k> <C-w>k
40) nnoremap <C-l> <C-w>l
41) 
dblume map <leader>c and d to use...

dblume authored 1 year ago

42) " https://levelup.gitconnected.com/7-surprising-vim-tricks-that-will-save-you-hours-b158d23fe9b7
dblume Add git Blame to vim; add g...

dblume authored 1 year ago

43) "nnoremap d "_d
44) "nnoremap D "_D
45) "nnoremap c "_c
46) "nnoremap C "_C
47) "nnoremap x "_x
48) "nnoremap X "_X
49) "nnoremap <leader>d d
50) "nnoremap <leader>D D
51) "nnoremap <leader>c c
52) "nnoremap <leader>C C
53) "nnoremap <leader>x x
54) "nnoremap <leader>X X
dblume map <leader>c and d to use...

dblume authored 1 year ago

55) 
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

56) " clear search highlights
57) nnoremap <cr> :noh<cr><cr>
David Blume first commit

David Blume authored 8 years ago

58) 
dblume tab key navigation of buffers

dblume authored 1 year ago

59) " tab switches to previous/next buffer
60) nnoremap <Tab> :bp<cr>
61) nnoremap <S-Tab> :bn<cr>
62) 
David Blume first commit

David Blume authored 8 years ago

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

dblume authored 2 years ago

77)   highlight StatusLine   ctermfg=17 ctermbg=Gray " override scheme
David Blume first commit

David Blume authored 8 years ago

78)   highlight StatusLineNC ctermfg=20 ctermbg=LightGray" override scheme
David Blume Specify a font for gvim on...

David Blume authored 4 years ago

79)   if has('win32')
80)     set guifont=DejaVu_Sans_Mono_for_Powerline:h10:cANSI:qDRAFT
81)   endif
David Blume first commit

David Blume authored 8 years ago

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

David Blume authored 6 years ago

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

David Blume authored 8 years ago

89)   endif
dblume Better statusline color.

dblume authored 2 years ago

90)   highlight StatusLine   ctermfg=24 ctermbg=LightGray  " override scheme
91)   highlight StatusLineNC ctermfg=236 ctermbg=Gray  " override scheme
92)   highlight MatchParen   term=reverse ctermbg=23  " 23 is more subtle than default
David Blume first commit

David Blume authored 8 years ago

93) endif
dblume Better statusline color.

dblume authored 2 years ago

94) 
95) " let g:loaded_airline = 1  " For testing the statusline settings above
David Blume first commit

David Blume authored 8 years ago

96) 
97) " set mouse=v     " visual mode, not working great for PuTTY
98) 
99) set tags=tags;/
100) 
101) set history=50
102) set ruler
103) if has('statusline')
104)   set laststatus=2
105)   set statusline=%<%f\   " Filename
106)   set statusline+=%w%h%m%r " Options
107)   "set statusline+=%{fugitive#statusline()} " Git
dblume Remove some lines, allow mo...

dblume authored 2 years ago

108)   set statusline+=\[%{&ff}/%Y]              " filetype
109)   set statusline+=%=%-12.(%l,%c%V%)\ %p%%   " Right aligned file nav info
David Blume first commit

David Blume authored 8 years ago

110) endif
111) 
112) set encoding=utf-8
113) 
dblume No comments after key mappi...

dblume authored 1 year ago

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

David Blume authored 8 years ago

116) " I use relative number for cursor movement.
117) nmap <leader>r :set relativenumber!<cr>
118) nmap <leader>n :set number!<cr>
119) 
120) " Useful mappings for managing tabs
dblume Remove bad vim mappings for...

dblume authored 2 years ago

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

David Blume authored 8 years ago

123) nmap <leader>tn :tabnew
124) nmap <leader>to :tabonly<cr>
125) nmap <leader>tc :tabclose<cr>
126) nmap <leader>tm :tabmove
dblume Add shortcuts for tab selec...

dblume authored 2 years ago

127) nmap <leader>1 1gt
128) nmap <leader>2 2gt
129) nmap <leader>3 3gt
130) nmap <leader>4 4gt
131) nmap <leader>5 5gt
132) nmap <leader>6 6gt
133) nmap <leader>7 7gt
134) nmap <leader>8 8gt
135) nmap <leader>9 9gt
dblume Use <leader>o OpenCurrentAs...

dblume authored 2 years ago

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

dblume authored 2 years ago

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

dblume authored 2 years ago

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

dblume authored 2 years ago

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

dblume authored 2 years ago

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

David Blume authored 8 years ago

145) 
dblume Repeatedly call Blame to go...

dblume authored 1 year ago

146) " git blame, show, diff and log
dblume Add git blame, show commit,...

dblume authored 1 year ago

147) " Delete these functions when you install https://github.com/tpope/vim-fugitive
148) function! GitBlame()
dblume Repeatedly call Blame to go...

dblume authored 1 year ago

149)     let l:hash = expand('<cword>')
dblume 'Blame' in vim restores you...

dblume authored 1 year ago

150)     let l:currentView = winsaveview()
dblume Repeatedly call Blame to go...

dblume authored 1 year ago

151)     " If in a Blame window already, do blame for previous commit
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

152)     if l:hash =~ '^[0-9a-f]\{7,40}$' && stridx(expand('%'), ' -- ') != -1
dblume Repeatedly call Blame to go...

dblume authored 1 year ago

153)         let l:fname = split(expand('%'), ' -- ')[-1]
154)         exec 'tabnew | r! git blame ' . l:hash . '^ -- ' . shellescape(l:fname)
155)         exec 'silent :file git blame ' . l:hash . '^ -- ' . l:fname
156)     else
157)         let l:fname = expand('%')
158)         exec 'tabnew | r! git blame -- ' . shellescape(l:fname)
159)         exec 'silent :file git blame -- ' . l:fname
160)     endif
161)     0d_
dblume 'Blame' in vim restores you...

dblume authored 1 year ago

162)     call winrestview(l:currentView)
dblume Add git blame, show commit,...

dblume authored 1 year ago

163)     setl buftype=nofile
164) endfunction
165) command Blame :call GitBlame()
166) 
167) function! GitShow()
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

168)     let l:fname = expand('%')
dblume Add git blame, show commit,...

dblume authored 1 year ago

169)     let l:hash = expand('<cword>')
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

170)     if l:hash =~ '^[0-9a-f]\{7,40}$'
171)         if stridx(l:fname, ' -- ') != -1
172)             let l:fname = split(l:fname, ' -- ')[-1]
173) 	endif
174) 	" Have Show show all the affected files, so don't actually use  "--"
175)         " exec 'tabnew | r! git show ' . l:hash . ' -- ' . shellescape(l:fname)
dblume Repeatedly call Blame to go...

dblume authored 1 year ago

176)         exec 'tabnew | r! git show ' . l:hash
177)         setl buftype=nofile
178)         0d_
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

179) 	" We lie here (' -- ') to have a filename the other git commands can use.
180)         exec 'silent :file git show ' . l:hash . ' -- ' . l:fname
dblume Repeatedly call Blame to go...

dblume authored 1 year ago

181)     else
182)         echo l:hash . ' is not a git hash.'
183)     endif
dblume Add git blame, show commit,...

dblume authored 1 year ago

184) endfunction
185) command Show :call GitShow()
186) 
187) function! GitDiff()
dblume Better filename expansion f...

dblume authored 1 year ago

188)     let l:fname = expand('%:.')
dblume Add git blame, show commit,...

dblume authored 1 year ago

189)     let l:buf = winbufnr(0)
dblume Add git log to vim; make gi...

dblume authored 1 year ago

190)     let l:commit = 'HEAD'
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

191)     let l:hash = expand('<cword>')
dblume Add git log to vim; make gi...

dblume authored 1 year ago

192) 
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

193)     " If the current word is a hash, then diff that vs. previous
194)     if l:hash =~ '^[0-9a-f]\{7,40}$' && stridx(expand('%'), ' -- ') != -1
195)         let l:fname = split(expand('%'), ' -- ')[-1]
196)         exec ':tabnew | silent r! git show ' . l:hash . '^:$(git rev-parse --show-prefix)' . shellescape(l:fname)
197)         setl buftype=nofile
198)         0d_
199)         exec 'silent :file git show '.l:hash .'^:' . l:fname
dblume Add git log to vim; make gi...

dblume authored 1 year ago

200) 
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

201)         exec 'vne | silent r! git show ' . l:hash . ':$(git rev-parse --show-prefix)' . shellescape(l:fname)
202)         setl buftype=nofile
203)         exec 'silent :file git show '.l:hash.':' . l:fname
204)         0d_
205)     else
206)         " If the buffer is not different then repo, then diff HEAD vs file's previous commit
207)         let l:o = system("git status --porcelain | grep " . l:fname)
208)         if v:shell_error != 0
209)             let l:commit = system('git log -2 --pretty=format:"%h" -- ' . l:fname . ' | tail -n 1')
210)         endif
211)     
212)         " Bug if l:filename includes ".."
213)         exec ':tabnew | r! git show ' . l:commit . ':$(git rev-parse --show-prefix)' . l:fname
214)         setl buftype=nofile
215)         0d_
216)         exec 'silent :file git show '.l:commit.':' . l:fname
217)         exec 'vert sb '.l:buf
218)     endif
dblume Add git blame, show commit,...

dblume authored 1 year ago

219)     windo diffthis
220)     setl buftype=nofile
221)     wincmd r
222)     wincmd l
223) endfunction
224) command Diff :call GitDiff()
dblume Add git Blame to vim; add g...

dblume authored 1 year ago

225) 
dblume Add git log to vim; make gi...

dblume authored 1 year ago

226) function! GitLog()
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

227)     let l:fname = expand('%')
228)     exec 'tabnew | r! git log1 -- ' . shellescape(l:fname)
dblume Add git log to vim; make gi...

dblume authored 1 year ago

229)     setl buftype=nofile
dblume Repeatedly call Blame to go...

dblume authored 1 year ago

230)     0d_
dblume Harmonize Git in vim; If <c...

dblume authored 1 year ago

231)     exec 'silent :file git log1 -- ' . l:fname
dblume Add git log to vim; make gi...

dblume authored 1 year ago

232) endfunction
233) command Log :call GitLog()
234) 
David Blume first commit

David Blume authored 8 years ago

235) " pastetoggle
236) nmap <leader>p :set invpaste paste?<cr>
237) 
David Blume Add mapping to paste onto n...

David Blume authored 6 years ago

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

David Blume authored 3 years ago

241) " Make netrw's Explore behave a little like NERDTreeToggle
242) " 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

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

David Blume authored 3 years ago

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

David Blume authored 3 years ago

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

David Blume authored 3 years ago

248)         return
249)       endif
250)     endfor
251)   endif
David Blume Use netrw Vexplore to assur...

David Blume authored 3 years ago

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

David Blume authored 4 years ago

253) endfunction
254) nmap <leader>e :call ToggleNetrw()<cr>
255) 
dblume No comments after key mappi...

dblume authored 1 year ago

256) " install taglist
257) let Tlist_GainFocus_On_ToggleOpen = 1  " Jump to taglist window on open
258) let Tlist_Exit_OnlyWindow = 1          " if you are the last, kill yourself
259) let Tlist_Close_On_Select = 1          " Close taglist window on select
260) nmap <leader>l :TlistToggle<cr>
261) 
262) " install vim-bbye
263) nmap <leader>bd :Bdelete<cr>
David Blume first commit

David Blume authored 8 years ago

264) 
265) " Visual mode mappings
266) """
267) 
268) " map sort function to a key
269) vnoremap <leader>s :sort<cr>
270) 
271) "easier moving of code blocks
David Blume vimrc key remappings. jk as...

David Blume authored 6 years ago

272) vnoremap < <gv
273) vnoremap > >gv
David Blume first commit

David Blume authored 8 years ago

274) 
275) " If too many file system events are getting triggered.
276) set nobackup       " ~ files
277) set nowritebackup  " Don't write buff to temp, delete orig, rename temp to orig
278) set noswapfile     " .swp files
279) 
280) " Allow tags to open another buffer even if this one is modified
281) set hidden
282) 
283) " Switch between source and header files
284) function! SwitchSourceHeader()
285)   let s:ext  = expand("%:e")
286)   let s:base = expand("%:t:r")
287)   let s:cmd  = "find " . s:base
288)   if (s:ext == "cpp" || s:ext == "c")
289)     if findfile(s:base . ".h"  ) != "" | exe s:cmd . ".h"   | return | en
290)     if findfile(s:base . ".hpp") != "" | exe s:cmd . ".hpp" | return | en
291)   else
292)     if findfile(s:base . ".cpp") != "" | exe s:cmd . ".cpp" | return | en
293)     if findfile(s:base . ".c"  ) != "" | exe s:cmd . ".c"   | return | en
294)   endif
295) endfunc
296) 
297) " Demonstrates a way to look in a mirror directory
298) " function! OpenOther()
299) "    if expand("%:e") == "cpp"
300) "      exe "split" fnameescape(expand("%:p:r:s?src?include?").".h")
301) "    elseif expand("%:e") == "h"
302) "      exe "split" fnameescape(expand("%:p:r:s?include?src?").".cpp")
303) "    endif
304) " endfunc
305) 
306) " Delete trailing white space on save, useful for Python and CoffeeScript ;)
307) function! DeleteTrailingWS()
308)   exe "normal mz"
309)   %s/\s\+$//ge
310)   exe "normal `z"
311) endfunc
312) 
David Blume Add OpenInOtherWindow to .v...

David Blume authored 8 years ago

313) function! OpenInOtherWindow()
314)   if winnr('$') == 1
315)     exe "wincmd F"
316)   else
317)     let curNum = winnr()
318)     let oldBuf = bufnr( "%" )
319)     if curNum == 1
320)       let othNum = 2
321)     else
322)       let othNum = 1
323)     endif
324)     exe "normal! gF"
325)     let newBuf = bufnr( "%" )
326)     let newLine = line(".")
327)     exe 'hide buf' oldBuf
328)     exe othNum . "wincmd w"
329)     exe 'hide buf' newBuf
330)     exe "normal! " . newLine . "G"
331)   endif
332) endfunc
333) 
334) nmap <silent> <leader>F :call OpenInOtherWindow()<cr>
dblume Make OpenInOtherWindow easier.

dblume authored 2 years ago

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

David Blume authored 8 years ago

336) 
David Blume first commit

David Blume authored 8 years ago

337) if has("autocmd")
338)   autocmd BufWrite *.py :call DeleteTrailingWS()  " Delete trailing whitespace
339)   " Don't let smartindent unindent the # character in Python files
340)   autocmd FileType python  inoremap # X<c-h>#
dblume Whitespace.

dblume authored 2 years ago

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

David Blume authored 8 years ago

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

David Blume authored 8 years ago

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

dblume authored 2 years ago

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

David Blume authored 8 years ago

348) 
349)   autocmd FileType python  set foldmethod=indent  " 'za' to fold
350) 
David Blume Disable vim-airline whitesp...

David Blume authored 6 years ago

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

David Blume authored 8 years ago

352)   autocmd FileType c,cpp set foldmethod=syntax
353) 
dblume Change filetype from roku t...

dblume authored 1 year ago

354)   " autocmd FileType rokulog :let g:airline_extensions = []
355)   " autocmd FileType rokulog :let g:airline_section_warning = airline#section#create([])
356)   autocmd FileType rokulog :let g:airline#extensions#whitespace#enabled = 0
David Blume Disable vim-airline whitesp...

David Blume authored 6 years ago

357) 
David Blume first commit

David Blume authored 8 years ago

358)   if v:version >= 703
359)     " I toggle out of relative number when Vim's focus is lost, because
360)     " if I'm not editing, then I may be referring to errors with line numbers.
361)     autocmd FocusLost * if &relativenumber | set number | endif
362)     autocmd FocusGained * if &number | set relativenumber | endif
363)   endif
364) 
dblume Remove some lines, allow mo...

dblume authored 2 years ago

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

dblume authored 1 year ago

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

David Blume authored 8 years ago

368) 
369)   " When editing a file, always jump to the last cursor position
370)   autocmd BufReadPost *
dblume Exempt gitcommit filetype f...

dblume authored 1 year ago

371)   \ if &ft != "p4changelist" && &ft != "gitcommit" && line("'\"") > 0 && line ("'\"") <= line("$") |
David Blume first commit

David Blume authored 8 years ago

372)   \   exe "normal! g'\"" |
373)   \ endif
374) endif
375) 
376) " This requires vim to be compiled with +python
377) " Use auto complete in insert mode with ctrl-x, ctrl-o
378) " See :help new-omni-completion for more.
379) filetype plugin on
380) set omnifunc=syntaxcomplete#Complete
dblume Completion tweaks

dblume authored 2 years ago

381) 
382) " Torn on whether I like the omni completion preview window left open or not.
383) " autocmd CompleteDone * pclose
384) 
385) " Omni completion via ctrl-space (in addition to ctrl-x ctrl-o)
386) inoremap <Nul> <C-x><C-o>
387) 
David Blume Add cscope support

David Blume authored 6 years ago

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

David Blume authored 6 years ago

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

dblume authored 2 years ago

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

David Blume authored 3 years ago

394)     set nocsverb
395)     " add any database in current directory
396)     if filereadable("cscope.out")
397)         cs add cscope.out
398)     " else add database pointed to by environment
399)     elseif $CSCOPE_DB != ""
400)         cs add $CSCOPE_DB
401)     endif
402)     set csverb
David Blume Add cscope support

David Blume authored 6 years ago

403) endif
404) 
David Blume Sort QuickFix tool by filen...

David Blume authored 3 years ago

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

dblume authored 2 years ago

410) autocmd! QuickfixCmdPost * call MaybeSortQuickfix('QfStrCmp')
411) 
412) function! MaybeSortQuickfix(fn)
413) "    exe 'normal! '  " Doesn't work. Wanted to jump back to where we were.
414)     let t = getqflist({'title': 1}).title
dblume QuickFix sorts for 'vimgrep...

dblume authored 2 years ago

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

dblume authored 2 years ago

416)     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

417)         call setqflist(sort(getqflist(), a:fn), 'r')
418)         call setqflist([], 'r', {'title': t})
419)     endif
420)     cwindow
David Blume Sort QuickFix tool by filen...

David Blume authored 3 years ago

421) endfunction
422) 
423) function! QfStrCmp(e1, e2)
424)     let [t1, t2] = [bufname(a:e1.bufnr), bufname(a:e2.bufnr)]
425)     return t1 <# t2 ? -1 : t1 ==# t2 ? 0 : 1
426) endfunction
427) 
dblume Integrate ripgrep into vim.

dblume authored 2 years ago

428) " Use ripgrep for search instead of grep
429) if executable('rg')
430)     " set grepprg=rg\ --vimgrep\ --hidden\ —glob '!.git'
431)     set grepprg=rg
432) endif
433) " Navigate quickfix list with ease
434) nnoremap <silent> [q :cprevious<CR>
435) nnoremap <silent> ]q :cnext<CR>
436) 
David Blume Add tip for using Roboto Mo...

David Blume authored 6 years ago

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

David Blume authored 6 years ago

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

David Blume authored 6 years ago

439) " Cygwin64 won't let you choose it. Launch Cygwin64 as follows:
440) " 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

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

David Blume authored 4 years ago

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

David Blume authored 3 years ago

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

David Blume authored 4 years ago

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

David Blume authored 3 years ago

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

David Blume authored 4 years ago

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

David Blume authored 6 years ago

452) 
453) " When using vim-airline
454) let g:airline_powerline_fonts = 1
David Blume Use vim-airline characters...

David Blume authored 4 years ago

455) if !exists('g:airline_symbols')
456)     let g:airline_symbols = {}
457) endif
458) let g:airline_symbols.whitespace = '✖'
459) let g:airline_symbols.linenr = 'Ξ'
David Blume Make vim easier to tweak wh...

David Blume authored 3 years ago

460) let g:airline_symbols.maxlinenr = ''
dblume Add better readonly char op...

dblume authored 3 years ago

461) " If using a powerline font, don't override .readonly. Otherwise pick one.
462) "let g:airline_symbols.readonly = '◆'
463) "let g:airline_symbols.readonly = '🔒'
David Blume Make vim easier to tweak wh...

David Blume authored 3 years ago

464) 
465) " If no "...for Powerline" font is available, uncomment these four:
David Blume tmux status line pane refin...

David Blume authored 3 years ago

466) let g:airline_left_sep = '▌'
467) let g:airline_right_sep = '▐'
468) let g:airline_left_alt_sep = '|'
469) let g:airline_right_alt_sep = '|'
David Blume Make vim easier to tweak wh...

David Blume authored 3 years ago

470) 
David Blume Change from vim-powerline t...

David Blume authored 6 years ago

471) let g:airline_theme = 'powerlineish'
David Blume Disable vim-airline wordcount.

David Blume authored 6 years ago

472) let g:airline#extensions#wordcount#enabled = 0
David Blume Disable vim-airline whitesp...

David Blume authored 6 years ago

473) " let g:airline_exclude_filetypes = []
dblume Added vim-rooter.

dblume authored 2 years ago

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

dblume authored 2 years ago

477) let g:rooter_cd_cmd = 'lcd'
478) let g:rooter_manual_only = 1