dotfiles/editors/vim/vimrc

512 lines
16 KiB
VimL
Raw Normal View History

2010-11-30 12:26:57 +11:00
set nocompatible
2016-07-04 17:37:15 +10:00
let mapleader = "\<Space>"
2019-08-29 10:07:39 +10:00
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall | source $MYVIMRC
endif
2011-09-21 08:33:32 +10:00
2019-08-29 10:07:39 +10:00
call plug#begin('~/.cache/vim/plugs')
Plug 'w0ng/vim-hybrid' " color scheme
2019-09-08 11:54:07 +10:00
2019-08-29 10:07:39 +10:00
Plug 'mhinz/vim-startify'
2019-09-08 11:53:51 +10:00
let g:startify_session_persistence = 1
2019-08-29 10:07:39 +10:00
let g:startify_session_autoload = 1
let g:startify_fortune_use_unicode = 1
2019-09-08 11:53:51 +10:00
let g:startify_update_oldfiles = 1
let g:startify_change_to_vcs_root = 1
let g:startify_change_to_dir = 0
let g:startify_lists = [
\ { 'type': 'dir', 'header': [' Recent '. getcwd()] },
\ { 'type': 'files', 'header': [' Recent'] },
\ { 'type': 'bookmarks', 'header': [' Bookmarks'] },
\ { 'type': 'sessions', 'header': [' Sessions'] },
\ { 'type': 'commands', 'header': [' Commands'] },
\ ]
2019-08-29 10:07:39 +10:00
Plug 'tpope/vim-sensible' " Sensible defaults, duh
" Out of the box support for many languages
Plug 'sheerun/vim-polyglot', { 'tag': '*' }
2019-08-29 10:07:39 +10:00
Plug 'scrooloose/nerdtree', { 'tag': '*' }
2019-09-08 11:56:04 +10:00
let g:NERDTreeWinPos='right'
let g:NERDTreeRespectWildIgnore=1 " Hide things from wildignore
let g:NERDTreeMouseMode = 3 " Nerd tree: single clicks open file/dir
let g:NERDTreeNaturalSort = 1
2019-08-29 12:48:30 +10:00
nmap <leader>tt :NERDTreeToggle<CR>
nmap <leader>fo :NERDTreeFind<CR>
2019-09-08 11:56:04 +10:00
"Plug 'tpope/vim-vinegar' " Nicer netrw
let loaded_netrwPlugin=1 " Disable netrw completely http://stackoverflow.com/a/21687112
2019-08-29 10:07:39 +10:00
Plug 'mbbill/undotree', { 'on': ['UndotreeToggle', 'UndotreeFocus', 'UndotreeShow', 'UndotreeHide'] }
let g:undotree_WindowLayout = 2
let g:undotree_SetFocusWhenToggle = 1
nmap <leader>u :UndotreeToggle<CR>
nmap <leader>tu :UndotreeToggle<CR>
Plug 'tpope/vim-commentary'
" There is no ASCII char for Control+/ (common shortcut for commentign), but
" most terminals match that key combo to Control+_, so we will capture that
" instead.
nmap <C-_> gcc
xmap <C-_> gcgv
imap <C-_> <C-\><C-O>gcc
Plug 'tpope/vim-dispatch'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-endwise' " Auto-add 'end' etc appropriately in various languages
Plug 'tpope/vim-fugitive', {'tag': '*', 'branch': 'master'}
Plug 'rhysd/committia.vim' " More convenient UI when using Vim as EDITOR for `git commit`
Plug 'hotwatermorning/auto-git-diff' " Show diffs in split when doing a `git rebase -i`
2019-08-29 10:07:39 +10:00
Plug 'tpope/vim-git'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-sleuth' " auto-config indent and tabs etc based on other files
Plug 'tpope/vim-surround' " quoting/parenthesizing made simple
Plug 'wellle/targets.vim'
2019-08-29 10:07:39 +10:00
Plug 'terryma/vim-expand-region'
if has('signs')
Plug 'airblade/vim-gitgutter'
endif
Plug 'kana/vim-smartinput' " smart pairwise characters
Plug '~/.fzf' " Installation of bins handled by Fresh, separately
Plug 'junegunn/fzf.vim'
if executable('ag')
let $FZF_DEFAULT_COMMAND = 'ag -l --hidden .'
endif
map <Leader><Leader> :GFiles<CR>
map <C-p> :Files<CR>
" autocmd FileType fzf nmap <buffer> <silent> <ESC> :q<CR>
" make t, f, T, F, etc all multi-line
Plug 'dahu/vim-fanfingtastic'
" Preview register contents before selecting the register
Plug 'junegunn/vim-peekaboo'
Plug 'junegunn/vim-easy-align', { 'on': ['<Plug>(EasyAlign)', 'EasyAlign'] }
vmap <Enter> <Plug>(EasyAlign)
" When re-opening a file, start cursor on last edit location
Plug 'farmergreg/vim-lastplace'
Plug 'thisivan/vim-matchit' " extended matching for html, latex, and many other languages
Plug 'kana/vim-textobj-user' " Create new text objects
Plug 'michaeljsmith/vim-indent-object'
Plug 'haya14busa/incsearch.vim', { 'on': ['<Plug>(incsearch-forward)', '<Plug>(incsearch-backward)', '<Plug>(incsearch-stay)']}
Plug 'haya14busa/incsearch-fuzzy.vim', { 'on': ['<Plug>(incsearch-fuzzy-/)', '<Plug>(incsearch-fuzzy-?)', '<Plug>(incsearch-fuzzy-stay)']}
nmap / <Plug>(incsearch-forward)
xmap / <Plug>(incsearch-forward)
nmap ? <Plug>(incsearch-backward)
xmap ? <Plug>(incsearch-backward)
map g/ <Plug>(incsearch-stay)
map z/ <Plug>(incsearch-fuzzy-/)
map z? <Plug>(incsearch-fuzzy-?)
nmap zg/ <Plug>(incsearch-fuzzy-stay)
Plug 'Yggdroot/indentLine'
let g:indentLine_color_term = 239
let g:indentLine_color_gui = '#504945'
let g:indentLine_fileTypeExclude = ['help', 'man', 'startify', 'vimfiler', 'markdown']
2019-08-29 10:07:39 +10:00
let g:indentLine_char = '┊'
" Run a find-and-replace using the last search term
nnoremap <M-r> :%s/<C-r>///g<Left><Left>
" Make * and # work with a visual selection (in normal mode, it falls back to
" default behaviour of searching for current word)
Plug 'thinca/vim-visualstar'
Plug 'neoclide/coc.nvim', {'tag': '*', 'branch': 'release', 'do': { -> coc#util#install()}}
2019-08-29 10:07:39 +10:00
Plug 'liuchengxu/vim-which-key' ", { 'on': ['WhichKey', 'WhichKey!'] }
2019-08-29 12:50:13 +10:00
set timeoutlen=300
2019-08-29 10:07:39 +10:00
autocmd! User vim-which-key call which_key#register('<Space>', 'g:which_key_map')
nnoremap <silent> <leader> :<c-u>WhichKey '<Space>'<CR>
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-rake'
Plug 'thisivan/vim-ruby-matchit'
Plug 'nelstrom/vim-textobj-rubyblock', { 'for': 'ruby' }
Plug 'gko/vim-coloresque'
Plug 'w0rp/ale'
let g:ale_fix_on_save = 1
let g:ale_completion_enabled = 1
let g:ale_fixers = {
\ '*': ['remove_trailing_lines', 'trim_whitespace'],
\ 'javascript': ['eslint'],
\ 'elixir': ['mix_format'],
\ 'rust': ['rustfmt'],
2019-08-29 10:07:39 +10:00
\}
" Change working directory to .git root
Plug 'airblade/vim-rooter'
let g:rooter_use_lcd = 1
2019-08-29 10:07:39 +10:00
Plug 'vim-airline/vim-airline'
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#left_sep = ' '
let g:airline#extensions#tabline#left_alt_sep = '|'
call plug#end()
hi Normal ctermbg=none
" if hidden not set, TextEdit might fail.
set hidden
" Better display for messages
set cmdheight=2
" Smaller updatetime for CursorHold & CursorHoldI
set updatetime=300
" always show signcolumns
set signcolumn=yes
" Use tab for trigger completion with characters ahead and navigate.
" Use command ':verbose imap <tab>' to make sure tab is not mapped by other plugin.
inoremap <silent><expr> <TAB>
\ pumvisible() ? "\<C-n>" :
\ <SID>check_back_space() ? "\<TAB>" :
\ coc#refresh()
inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
" Use <c-space> for trigger completion.
inoremap <silent><expr> <c-space> coc#refresh()
" Use <cr> for confirm completion, `<C-g>u` means break undo chain at current position.
" Coc only does snippet and additional edit on confirm.
"inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
" NOTE: above mapping disabled due to https://github.com/tpope/vim-endwise/issues/22#issuecomment-446042476
" Use `[c` and `]c` for navigate diagnostics
nmap <silent> [c <Plug>(coc-diagnostic-prev)
nmap <silent> ]c <Plug>(coc-diagnostic-next)
" Remap keys for gotos
nmap <silent> gd <Plug>(coc-definition)
nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> gi <Plug>(coc-implementation)
nmap <silent> gr <Plug>(coc-references)
" Use K for show documentation in preview window
nnoremap <silent> K :call <SID>show_documentation()<CR>
function! s:show_documentation()
if &filetype == 'vim'
execute 'h '.expand('<cword>')
else
call CocAction('doHover')
endif
endfunction
" Highlight symbol under cursor on CursorHold
autocmd CursorHold * silent call CocActionAsync('highlight')
" Remap for rename current word
nmap <leader>rn <Plug>(coc-rename)
" Remap for format selected region
vmap <leader>f <Plug>(coc-format-selected)
nmap <leader>f <Plug>(coc-format-selected)
" Setup formatexpr specified filetype(s).
augroup mygroup
autocmd!
autocmd FileType typescript,json setl formatexpr=CocAction('formatSelected')
augroup end
" Remap for do codeAction of selected region, ex: `<leader>aap` for current paragraph
vmap <leader>a <Plug>(coc-codeaction-selected)
nmap <leader>a <Plug>(coc-codeaction-selected)
" Remap for do codeAction of current line
nmap <leader>ac <Plug>(coc-codeaction)
syntax on
" Visual
set ruler
set guioptions=ce
set linespace=2
set background=dark
set laststatus=2
colorscheme hybrid
set showmatch " Briefly jump to a paren once it's balanced
set matchpairs+=\<:\>
" With `Cursor guibg=fg guifg=bg` + default MatchParen styling, it makes the
" cursor seem like it has actually jumped to the patching pair. This instead
" makes the MatchParen style preserve the background color, so that the
" Cursor can flip it appropriately.
hi! MatchParen cterm=NONE,bold gui=NONE,bold guibg=bg guifg=lightblue ctermbg=bg ctermfg=lightblue
2019-08-29 10:07:39 +10:00
" Tabs/Whitespace
set tabstop=2 " a Tab take up 2 spaces
set shiftwidth=2 " (un)indent 2 spaces at at ime
set autoindent " preserve previous indent level when inserting new line
set smarttab " insert/delete a tab's work of spaces at a time
set expandtab " insert actual spaces, not tabs
set nowrap " don't wrap long lines
set backspace=indent,eol,start " allow backspacing over everything in insert mode
" Toggle show tabs and trailing spaces (,c)
set list
set listchars=tab:⤑\ ,trail,eol:↵,nbsp:_
set fillchars=vert:\ ,fold:-
2019-08-29 12:48:30 +10:00
nnoremap <Leader>tc :set list! list?<CR>
2019-08-29 10:07:39 +10:00
" Misc
set switchbuf=useopen " Don't re-open already opened buffers
set nostartofline " Avoid moving cursor to BOL when jumping around
set virtualedit=all " Let cursor move past the last char
set whichwrap=b,s,h,l,<,>,[,]
set autoread " watch for file changes
set mouse=a " mouse can be handy sometimes
if !has('nvim')
set ttymouse=xterm2 " Needed to get mouse working when in Tmux/screen
endif
set fileformats=unix
set history=1000
set title " Show title in Terminal
" Bells
2019-08-29 13:29:54 +10:00
set visualbell
2019-08-29 10:07:39 +10:00
set noerrorbells " No noise.
set vb t_vb= " disable any beeps or flashes on error
" Searching
set hlsearch " highlight search matches and keep them highlighted
set incsearch " start matching search before hitting enter
set ignorecase " case-insensitive searching by default
set smartcase " but if searching with multiple cases, treat it as case-sensitive
" center current search result in middle of screen
nnoremap n nzz
nnoremap N Nzz
nnoremap * *zz
nnoremap # #zz
nnoremap g* g*zz
nnoremap g# g#zz
" Work around bug that leaves cursor in middle of line
nnoremap dd ddI<Esc>
" Tab completion
set wildmode=list:longest,list:full
set wildignore+=*.o,*.obj,.git,*.rbc,*.swp
" Directories for swp files
" Navigate cursor up/down by lines on screen, not lines in file
nmap j gj
nmap k gk
" Reselect visual block after adjusting indentation
vnoremap < <gv
vnoremap > >gv
" Adjust indentation with single keypress
nnoremap < <<
nnoremap > >>
" Nicer splitting
set splitbelow
set splitright
" Emacs-like keys for the command line and insert mode
noremap! <C-A> <Home>
noremap! <C-E> <End>
" Always show cursorline, but only in current window.
set scrolloff=3
set scrolljump=10
set number " line numbers
set relativenumber
" I keep deleting words when I want to switch windows
imap <C-w> <Esc><C-w>
" Map control-S to save (<C-U> makes sure no range is inserted into command
" execution)
nmap <silent> <C-s> :<C-U>w<CR>
vmap <silent> <C-s> :<C-U>w<CR>gv
" Share clipboard with OS
set clipboard=unnamed,unnamedplus
" May only work in iTerm2 and may have other bad effects,
" but this shows a block in normal mode, and vertical bar
" in insert mode.
if exists('$TMUX')
" https://github.com/sjl/vitality.vim/issues/8#issuecomment-7664649
let &t_SI = "\<Esc>[3 q"
let &t_EI = "\<Esc>[0 q"
if !has('nvim')
set term=screen-256color
endif
else
let &t_SI = "\<Esc>]50;CursorShape=1\x7"
let &t_EI = "\<Esc>]50;CursorShape=0\x7"
endif
runtime macros/matchit.vim
function! <SID>StripTrailingWhitespaces()
" Preparation: save last search, and cursor position.
let _s=@/
let l = line(".")
let c = col(".")
" Do the business:
%s/\s\+$//e
" Clean up: restore previous search history, and cursor position
let @/=_s
call cursor(l, c)
endfunction
" Strip trailing whitespace on command
nmap <Leader>sw :call <SID>StripTrailingWhitespaces()<CR>
augroup the_rest
au!
if !has('nvim')
" Attempted fix for Vim losing mouse support when inside Tmux
autocmd TermResponse,CursorHold,CursorHoldI * set ttymouse=xterm2
endif
" Create parent directory if it doesn't exist before writing file
" (http://stackoverflow.com/questions/4292733/vim-creating-parent-directories-on-save)
autocmd BufWritePre * if expand("<afile>")!~#'^\w\+:/' && !isdirectory(expand("%:h")) | execute "silent! !mkdir -p ".shellescape(expand('%:h'), 1) | redraw! | endif
" make and python use real tabs
autocmd FileType make set noexpandtab
autocmd FileType python set noexpandtab
autocmd BufRead,BufNewFile gitconfig set ft=gitconfig
" Strip trailing whitespace on save
autocmd BufWritePre * :call <SID>StripTrailingWhitespaces()
augroup end
silent! !bash -c "mkdir -p ~/.cache/vim/{backups,swaps,undos} &>/dev/null"
set undofile " persistent undos
2019-08-29 10:07:39 +10:00
set undodir=~/.cache/vim/undos// " where to store undo histories (trailing // is important)
set directory=~/.cache/vim/swaps// " store swap files here (trailing // is important)
set backupdir=~/.cache/vim/backups// " store file backups here (trailing // is important)
set backupskip=/tmp/*,/private/tmp/*" " don't use backups for tmp files
2019-07-22 16:21:32 +10:00
set autoread
2012-01-10 03:23:38 +11:00
2019-08-29 12:43:27 +10:00
set modeline
2019-08-29 10:07:39 +10:00
set modelines=5
2011-02-21 15:56:13 +11:00
" For when you forget to sudo.. Really Write the file.
cmap w!! w !sudo tee % >/dev/null
" CTags
map <Leader>rt :!ctags --extra=+f -R *<CR><CR>
set tags=./.git/tags;./tmp/tags;/,./tags;/
2019-08-29 10:07:39 +10:00
nmap <leader>tp :set invpaste paste?<CR>
nmap <leader>tn :set invnumber number?<CR>
nmap <leader>tr :set invrelativenumber relativenumber?<CR>
2011-11-16 05:27:34 +11:00
2019-08-29 10:07:39 +10:00
if executable('ag')
let g:ackprg = 'ag --vimgrep --hidden'
endif
2019-08-29 10:07:39 +10:00
" comment line
2019-07-22 16:21:32 +10:00
" For working on highlight/syntax rules
map <F10> :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<' . synIDattr(synID(line("."),col("."),0),"name") . "> lo<" . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<CR>
2019-08-29 10:07:39 +10:00
" I pretty much only work with Postgres SQL, so assume *.sql files belong to
" that syntax:
let g:sql_type_default = 'pgsql'
" Make copy/paste work kinda normally
"
" https://stackoverflow.com/a/14786750/1155048
set pastetoggle=<F10>
inoremap <C-v> <F10><C-r>+<F10>
vnoremap <C-c> "+y
" Copy current file path to clipboard
nnoremap <C-c> :let @+ = expand("%:p") \| echo '"' . expand("%:p") . '" copied to clipboard.'<CR>
" Search for current visual selection
vnoremap <C-f> y<ESC>/<c-r>"<CR>
" Bubble lines up/down
nmap <M-k> :m-2<CR>
nmap <M-j> :m+1<CR>
nmap <M-Up> :m-2<CR>
nmap <M-Down> :m+1<CR>
vmap <M-k> :m-2<CR>gv
vmap <M-j> :m'>+1<CR>gv
vmap <M-Up> :m-2<CR>gv
vmap <M-Down> :m'>+1<CR>gv
" highlight last inserted text
nnoremap gV `[v`]
2016-07-04 17:37:15 +10:00
2019-08-29 10:07:39 +10:00
nmap <silent> [b :bprevious<CR>
nmap <silent> ]b :bnext<CR>
nmap <silent> ]t :tprevious<CR>
nmap <silent> [t :tnext<CR>
2019-09-08 12:05:55 +10:00
set formatoptions= " Clear so I can add with comments (see `:help fo-table`)
set formatoptions+=c " Auto-wrap comments, inserting current comment leader
set formatoptions+=r " Insert comment leader when hitting <Enter> within a comment
set formatoptions+=j " Remove comment leader when joining comment lines
set formatoptions+=o " Ditto except for when using o or O
set formatoptions+=q " Allow formatting text with `gq`
set formatoptions+=n " Recognise numbered lists for sake of indenting wrapped content
set nojoinspaces " Don't insert 2 spaces after punctuation when joining jines
hi ColorColumn guibg=#222222 ctermbg=235
set colorcolumn=79,120
set textwidth=79
2019-08-29 10:07:39 +10:00
" Show incremental previews of commands (such as :s[ubstitute])
set inccommand=nosplit
2019-09-08 12:05:55 +10:00
" If there's no EOL at the end of the file, don't mess up the diff by adding
" one
set nofixeol
set noautochdir
" https://dougblack.io/words/a-good-vimrc.html
set lazyredraw
" Show current syntax item for position under cursor
" https://vi.stackexchange.com/a/11877/11631
nnoremap zS :echo join(reverse(map(synstack(line('.'), col('.')), 'synIDattr(v:val,"name")')), ' ')<CR>
2019-08-29 10:07:39 +10:00
" Start elixir tooling with a custom MIX_ENV so that compilation by that
" tooling doesn't negatively affect Phoenix auto-reloading
"
" https://github.com/phoenixframework/phoenix/issues/1165#issuecomment-437130681
let $MIX_ENV='editor'
if filereadable(expand('~/.vimrc.local'))
source ~/.vimrc.local
endif