" Version 2022-03-10.1 - Use Quickfix for cscope, add OpenCurrentAsNewTab set nocompatible " Use Vim defaults, forget compatibility with vi. set bs=2 " allow backspacing over everything in insert mode set wildmenu " Allows command-line completion with tab set autoindent " Copy indent from current line when starting a new line set smartindent " Do smart auto indenting when starting new line set smarttab " Honor 'shiftwidth', 'tabstop' or 'softtabstop' set hlsearch " highlight all matches for previous search set nofoldenable " start unfolded set foldlevel=0 set nowrap " no wrapping text lines on the screen (exceptions below) set sidescroll=5 set listchars+=tab:>-,precedes:<,extends:>,nbsp:· " for :set list if v:version >= 703 " Do save the undo tree to file, but not in the local directory. " Don't forget to mkdir ~/.vim_undo set undodir=~/.vim_undo,. set undofile " undo even after closing and reopening a file endif " The following two lines set the use of perl regex, aka "very magic" nnoremap / /\v vnoremap / /\v " Make j and k move to the next row, not file line nnoremap j gj nnoremap k gk " From Steve Losh: http://learnvimscriptthehardway.stevelosh.com/chapters/10.html " Map jk to ESC in insert mode inoremap jk " https://stevelosh.com/blog/2010/09/coming-home-to-vim/#s3-why-i-came-back-to-vim nnoremap v vl nnoremap h nnoremap j nnoremap k nnoremap l " clear search highlights nnoremap :noh syntax on set t_Co=256 if v:version >= 703 set colorcolumn=80 endif if has('gui_running') " Didn't work: if &term != 'builtin_gui' " Light backgrounds for GUI experiences set background=light " colorscheme peaksea " install peaksea colorscheme tolerable " install tolerable if v:version >= 703 highlight ColorColumn ctermbg=255 guibg=#F6F6F6 endif highlight StatusLine ctermfg=17 ctermbg=Gray " override scheme highlight StatusLineNC ctermfg=20 ctermbg=LightGray" override scheme if has('win32') set guifont=DejaVu_Sans_Mono_for_Powerline:h10:cANSI:qDRAFT endif set lines=50 columns=100 else " Dark backgrounds for tty experiences set background=dark colorscheme desert " install desert if v:version >= 703 highlight ColorColumn ctermbg=233 guibg=Black " dark gray (or 17, dark blue) endif highlight StatusLine ctermfg=24 ctermbg=LightGray " override scheme highlight StatusLineNC ctermfg=236 ctermbg=Gray " override scheme highlight MatchParen term=reverse ctermbg=23 " 23 is more subtle than default endif " let g:loaded_airline = 1 " For testing the statusline settings above " set mouse=v " visual mode, not working great for PuTTY set tags=tags;/ set history=50 set ruler if has('statusline') set laststatus=2 set statusline=%<%f\ " Filename set statusline+=%w%h%m%r " Options "set statusline+=%{fugitive#statusline()} " Git set statusline+=\[%{&ff}/%Y] " filetype set statusline+=%=%-12.(%l,%c%V%)\ %p%% " Right aligned file nav info endif set encoding=utf-8 nmap w :w! " Fast saving " I use relative number for cursor movement. nmap r :set relativenumber! nmap n :set number! " Useful mappings for managing tabs " Tab Previous: gT or C-PageUp " Tab Next: gt or C-PageDown nmap tn :tabnew nmap to :tabonly nmap tc :tabclose nmap tm :tabmove nmap 1 1gt nmap 2 2gt nmap 3 3gt nmap 4 4gt nmap 5 5gt nmap 6 6gt nmap 7 7gt nmap 8 8gt nmap 9 9gt " Open current buffer in new tab. Close with C-w,c " https://vim.fandom.com/wiki/Maximize_window_and_return_to_previous_split_structure function! OpenCurrentAsNewTab() let l:currentView = winsaveview() tabedit % call winrestview(l:currentView) endfunction nmap o :call OpenCurrentAsNewTab() " pastetoggle nmap p :set invpaste paste? " Control+p to paste onto next line nmap :pu " Make netrw's Explore behave a little like NERDTreeToggle " http://vimcasts.org/blog/2013/01/oil-and-vinegar-split-windows-and-project-drawer/ function! ToggleNetrw() if bufwinnr("NetrwTreeListing") > 0 for i in range(1, bufnr("$")) if (getbufvar(i, "&filetype") == "netrw") silent exe "bwipeout " . i return endif endfor endif silent Vexplore %:p:h endfunction nmap e :call ToggleNetrw() nmap l :TlistToggle " install taglist nmap bd :Bdelete " install vim-bbye " Visual mode mappings """ " map sort function to a key vnoremap s :sort "easier moving of code blocks vnoremap < >gv " If too many file system events are getting triggered. set nobackup " ~ files set nowritebackup " Don't write buff to temp, delete orig, rename temp to orig set noswapfile " .swp files " Allow tags to open another buffer even if this one is modified set hidden " Switch between source and header files function! SwitchSourceHeader() let s:ext = expand("%:e") let s:base = expand("%:t:r") let s:cmd = "find " . s:base if (s:ext == "cpp" || s:ext == "c") if findfile(s:base . ".h" ) != "" | exe s:cmd . ".h" | return | en if findfile(s:base . ".hpp") != "" | exe s:cmd . ".hpp" | return | en else if findfile(s:base . ".cpp") != "" | exe s:cmd . ".cpp" | return | en if findfile(s:base . ".c" ) != "" | exe s:cmd . ".c" | return | en endif endfunc " Demonstrates a way to look in a mirror directory " function! OpenOther() " if expand("%:e") == "cpp" " exe "split" fnameescape(expand("%:p:r:s?src?include?").".h") " elseif expand("%:e") == "h" " exe "split" fnameescape(expand("%:p:r:s?include?src?").".cpp") " endif " endfunc " Delete trailing white space on save, useful for Python and CoffeeScript ;) function! DeleteTrailingWS() exe "normal mz" %s/\s\+$//ge exe "normal `z" endfunc function! OpenInOtherWindow() if winnr('$') == 1 exe "wincmd F" else let curNum = winnr() let oldBuf = bufnr( "%" ) if curNum == 1 let othNum = 2 else let othNum = 1 endif exe "normal! gF" let newBuf = bufnr( "%" ) let newLine = line(".") exe 'hide buf' oldBuf exe othNum . "wincmd w" exe 'hide buf' newBuf exe "normal! " . newLine . "G" endif endfunc nmap F :call OpenInOtherWindow() nmap f :call OpenInOtherWindow() if has("autocmd") autocmd BufWrite *.py :call DeleteTrailingWS() " Delete trailing whitespace " Don't let smartindent unindent the # character in Python files autocmd FileType python inoremap # X# autocmd FileType c,cpp,php,brs,sh set expandtab " Use spaces instead of tabs autocmd Filetype make setl noexpandtab " ...not for files that use tabs. " Use the vim command %retab before applying the following " two with files that have 8-space tabs. autocmd FileType c,cpp,python,php set tabstop=4 autocmd FileType c,cpp,php set shiftwidth=4 autocmd FileType python set foldmethod=indent " 'za' to fold autocmd FileType python set foldlevel=99 autocmd FileType c,cpp nmap s :call SwitchSourceHeader() autocmd FileType c,cpp set foldmethod=syntax " autocmd FileType roku :let g:airline_extensions = [] " autocmd FileType roku :let g:airline_section_warning = airline#section#create([]) autocmd FileType roku :let g:airline#extensions#whitespace#enabled = 0 if v:version >= 703 " I toggle out of relative number when Vim's focus is lost, because " if I'm not editing, then I may be referring to errors with line numbers. autocmd FocusLost * if &relativenumber | set number | endif autocmd FocusGained * if &number | set relativenumber | endif endif autocmd BufRead *.txt set wrap linebreak " "soft" wrap of existing lines autocmd BufRead README set wrap linebreak " "soft" wrap of existing lines " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if &ft != "p4changelist" && line("'\"") > 0 && line ("'\"") <= line("$") | \ exe "normal! g'\"" | \ endif endif " This requires vim to be compiled with +python " Use auto complete in insert mode with ctrl-x, ctrl-o " See :help new-omni-completion for more. filetype plugin on set omnifunc=syntaxcomplete#Complete " Torn on whether I like the omni completion preview window left open or not. " autocmd CompleteDone * pclose " Omni completion via ctrl-space (in addition to ctrl-x ctrl-o) inoremap " Next two map j and k to C-n (next) and C-p (prev). " But it's affected by the 'jk to ESC' mapping above, so commented out. "inoremap j ((pumvisible())?("\"):("j")) "inoremap k ((pumvisible())?("\"):("k")) " cscope if has("cscope") set cscopetag " Use both cscope and ctag for 'ctrl-]' set csto=1 " 0=cscope first; 1=ctags first set cscopequickfix=s-,c-,d-,i-,t-,e-,a- " cscope to quickfix window set nocsverb " add any database in current directory if filereadable("cscope.out") cs add cscope.out " else add database pointed to by environment elseif $CSCOPE_DB != "" cs add $CSCOPE_DB endif set csverb endif " From https://stackoverflow.com/questions/15393301/how-to-automatically-sort-quickfix-entries-by-line-text-in-vim " :grep term % " :grep -r term path/ " :cw " :ccl (or C-w,q) autocmd! QuickfixCmdPost * call MaybeSortQuickfix('QfStrCmp') function! MaybeSortQuickfix(fn) " exe 'normal! ' " Doesn't work. Wanted to jump back to where we were. let t = getqflist({'title': 1}).title " Only sort the files if for search-style commands, not "make". if stridx(t, "cs ") == 0 || stridx(t, ":gr") == 0 || stridx(t, ":vim") == 0 || stridx(t, ":rg") == 0 call setqflist(sort(getqflist(), a:fn), 'r') call setqflist([], 'r', {'title': t}) endif cwindow endfunction function! QfStrCmp(e1, e2) let [t1, t2] = [bufname(a:e1.bufnr), bufname(a:e2.bufnr)] return t1 <# t2 ? -1 : t1 ==# t2 ? 0 : 1 endfunction " Use ripgrep for search instead of grep if executable('rg') " set grepprg=rg\ --vimgrep\ --hidden\ —glob '!.git' set grepprg=rg endif " Navigate quickfix list with ease nnoremap [q :cprevious nnoremap ]q :cnext " I use Roboto Mono from https://github.com/powerline/fonts " On iTerm2, Preferences -> Profiles -> Text -> Font " Cygwin64 won't let you choose it. Launch Cygwin64 as follows: " C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico -o Font="Roboto Mono for Powerline" - " Settings that make netrw more like NERDTree let g:netrw_banner = 0 let g:netrw_liststyle = 3 let g:netrw_browse_split = 4 let g:netrw_altv = 1 " set g:netrw_winsize to negative for absolute width, positive for relative let g:netrw_winsize = -36 " let g:netrw_winsize = 35 " sort is affecting only: directories on the top, files below let g:netrw_sort_sequence = '[\/]$,*' " When using vim-airline let g:airline_powerline_fonts = 1 if !exists('g:airline_symbols') let g:airline_symbols = {} endif let g:airline_symbols.whitespace = '✖' let g:airline_symbols.linenr = 'Ξ' let g:airline_symbols.maxlinenr = '' " If using a powerline font, don't override .readonly. Otherwise pick one. "let g:airline_symbols.readonly = '◆' "let g:airline_symbols.readonly = '🔒' " If no "...for Powerline" font is available, uncomment these four: let g:airline_left_sep = '▌' let g:airline_right_sep = '▐' let g:airline_left_alt_sep = '|' let g:airline_right_alt_sep = '|' let g:airline_theme = 'powerlineish' let g:airline#extensions#wordcount#enabled = 0 " let g:airline_exclude_filetypes = [] " Experimenting with vim-rooter let g:rooter_patterns = ['.git', 'Makefile', 'builds/'] let g:rooter_cd_cmd = 'lcd' let g:rooter_manual_only = 1