" Version 2024-03-07.1 - First misc fixes set bs=2 " allow backspacing over everything in insert mode set smartindent " Do smart auto indenting when starting new line set foldlevel=99 set nowrap " no wrapping text lines on the screen (exceptions below) set sidescroll=5 set listchars+=tab:>-,precedes:<,extends:>,nbsp:· " for :set list set iskeyword+=- " Add - to list of non-word-breaking chars. set scrolloff=0 " EC2 defaults to 5. Set explicitly to be consistent set notermguicolors " Only needed for neovim while I port my color schemes set undofile " undo even after closing and reopening a file set noshowcmd " Show size of selected area in visual mode on last line set noruler " Show coordinates on status line set hidden " Don't abandon Scratch buffer when hidden. " 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 (except when navigating popup menu) inoremap jk pumvisible() ? '' : '' inoremap j pumvisible() ? '' : 'j' inoremap k pumvisible() ? '' : 'k' " 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 " tab switches to previous/next buffer nnoremap :bp nnoremap :bn set t_Co=256 set colorcolumn=80 if has('gui_running') " Didn't work: if &term != 'builtin_gui' " Light backgrounds for GUI experiences set background=light " colorscheme peaksea colorscheme tolerable highlight ColorColumn ctermbg=255 guibg=#F6F6F6 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 nvim_desert endif au InsertEnter * hi statusline guibg=Cyan ctermfg=20 guifg=Black ctermbg=248 au InsertLeave * hi statusline term=bold,reverse cterm=bold,reverse ctermfg=24 ctermbg=250 guifg=black guibg=#c2bfa5 " May want to "set mouse=" See https://neovim.io/doc/user/vim_diff.html#_default-mouse " set mouse=v " visual mode, not great in PuTTY, neovim defaults to nvi " Consider neovim default "./tags;,tags" set tags=tags;/ set history=500 function! StatuslineGit() let l:branchname = system("git -C " . expand('%:p:h') . " rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'") return strlen(l:branchname) > 0 ? ' │ '.l:branchname : '' endfunction function! Current_mode() let l:currentmode={ \ 'n' : 'NORMAL', \ 'v' : 'VISUAL', \ 'V' : 'V·LINE', \ '' : 'V·BLOCK', \ 's' : 'SELECT', \ 'S' : 'S·LINE', \ 'i' : 'INSERT', \ 'r' : 'I·REPLACE', \ 'R' : 'REPLACE', \ 'Rv' : 'V·REPLACE', \ 'c' : 'COMMAND', \} return get(l:currentmode, mode(), mode()) endfunction function! Trim_brackets(fn) if v:version > 800 return trim(a:fn, "[]") else return a:fn endif endfunction set statusline=\ %{Current_mode()} set statusline+=%{&paste?'\ \ ·\ PASTE':''} "set statusline+=%{StatuslineGit()} set statusline+=\ │\ %f set statusline+=%m set statusline+=\ %r set statusline+=\ %= set statusline+=%h set statusline+=\ %{Trim_brackets(&filetype)} set statusline+=\ %#StatusLineNC# set statusline+=\ %{&fileencoding?&fileencoding:&encoding} set statusline+=\[%{&fileformat}\] set statusline+=\ │\ %p%%\ = set statusline+=\ %l/%L\ :\ %c\ " Fast saving nmap w :w! " 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() " install taglist let Tlist_GainFocus_On_ToggleOpen = 1 " Jump to taglist window on open let Tlist_Exit_OnlyWindow = 1 " if you are the last, kill yourself let Tlist_Close_On_Select = 1 " Close taglist window on select nmap l :TlistToggle " install vim-bbye nmap bd :Bdelete " 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 " 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 python,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 c,cpp nmap s :call SwitchSourceHeader() autocmd FileType c,cpp set foldmethod=syntax " 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 autocmd BufRead *.txt set wrap linebreak " "soft" wrap of existing lines autocmd BufRead README set wrap linebreak " "soft" wrap of existing lines autocmd BufRead *.rs :setlocal tags=./rusty-tags.vi;/ " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if &ft != "p4changelist" && &ft != "gitcommit" && 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 " 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 = '[\/]$,*' " Experimenting with vim-rooter let g:rooter_patterns = ['.git', 'Makefile', 'builds/'] let g:rooter_cd_cmd = 'lcd' let g:rooter_manual_only = 1 " In some environments, Vim starts in replace mode: " https://superuser.com/questions/1284561/why-is-vim-starting-in-replace-mode " set t_u7=