mirror of
https://github.com/notwa/rc
synced 2024-11-05 06:39:02 -08:00
392 lines
12 KiB
VimL
392 lines
12 KiB
VimL
" make vim unusable for anyone else
|
|
" from the get-go, we assume version >= 703
|
|
|
|
set nocompatible " screw vi
|
|
|
|
" hacks {{{1
|
|
if has('multi_byte')
|
|
scriptencoding utf-8 " allow it in this script
|
|
set termencoding=utf-8 " and this terminal supports it
|
|
set encoding=utf-8 " and the default file is in it
|
|
endif
|
|
|
|
if has("win32")
|
|
" assume directory structure:
|
|
" something/anything/.vimrc " this was passed to vim by the -u switch
|
|
" something/vim/
|
|
" something/vim/after
|
|
let $MYVIMRC=expand('<sfile>')
|
|
let g:rcvim=expand('<sfile>:p:h:h').'/vim'
|
|
else
|
|
let g:rcvim=$HOME.'/.vim'
|
|
endif
|
|
|
|
let &backupdir=g:rcvim.'/backup' " stash tilde files elsewhere
|
|
" using a double slash here enables file path inclusion for uniqueness:
|
|
let &directory=g:rcvim.'/swp//' " stash swap files too
|
|
let &undodir=g:rcvim.'/undo/' " undo files are cool
|
|
try | call mkdir(&backupdir, "p") | catch /E739/ | endtry
|
|
try | call mkdir(&directory, "p") | catch /E739/ | endtry
|
|
try | call mkdir(&undodir, "p") | catch /E739/ | endtry
|
|
|
|
" force colors on anything that looks reasonable
|
|
if (&term =~ "^xterm") || (&term == "screen")
|
|
let &t_Co=256
|
|
"let &t_AF="\e[38;5;%dm"
|
|
"let &t_AB="\e[48;5;%dm"
|
|
endif
|
|
|
|
if &term =~ '^tmux'
|
|
" https://unix.stackexchange.com/a/34723
|
|
" tmux will send xterm-style keys when xterm-keys is on
|
|
exec "set <xUp>=\e[1;*A"
|
|
exec "set <xDown>=\e[1;*B"
|
|
exec "set <xRight>=\e[1;*C"
|
|
exec "set <xLeft>=\e[1;*D"
|
|
endif
|
|
|
|
" main config {{{1
|
|
|
|
if has('syntax')
|
|
syntax enable " required for folding as well
|
|
set hlsearch " highlight search results
|
|
let c_syntax_for_h=1 " use C highlighting for .h files
|
|
endif
|
|
|
|
if has('gui_running')
|
|
set guioptions-=M " skip loading $VIMRUNTIME/menu.vim
|
|
set guioptions-=m " hide menu which isn't loaded anyway
|
|
set guioptions-=T " hide toolbar
|
|
set guioptions-=r " hide scrollbar
|
|
if has("gui_gtk2")
|
|
set guifont=Consolas\ 11
|
|
else
|
|
set guifont=Consolas:h9
|
|
end
|
|
set columns=84
|
|
set lines=36
|
|
cd $HOME " might not be ideal...
|
|
endif
|
|
|
|
if has('title') | set title | endif " terminal title
|
|
set history=10000 " command lines to remember
|
|
set number " lines
|
|
set ruler " write out the cursor position
|
|
set showcmd " show number of lines/etc. selected
|
|
set lazyredraw " when executing macros, untyped things
|
|
set shortmess=atI " be less verbose and shut up vim
|
|
set suffixes=.bak,~,.swp,.o,.log,.out " lower tab-completion priority
|
|
set noerrorbells visualbell t_vb= " disable bells
|
|
set scrolloff=3 " rows of context when scrolling
|
|
set sidescrolloff=2 " cols of context when scrolling
|
|
set incsearch " show first search result as we type
|
|
set ignorecase " insensitive searching
|
|
set smartcase " except when uppercase is used
|
|
set infercase " use existing case when ins-completing
|
|
set smarttab " handle insertion and deletion of indents
|
|
set virtualedit=block " allow cursor anywhere in visual block
|
|
set foldmethod=marker " (performance issues with other methods)
|
|
set foldlevelstart=99 " start with everything unfolded...?
|
|
set nowrap " word wrapping is pretty weak in vim
|
|
set nojoinspaces " don't use double-spaces for J and gq
|
|
set ffs=unix,dos " prefer unix-style EOLs (ffs indeed)
|
|
set nobomb " don't mention these on planes
|
|
set undofile " remember undos across files/sessions
|
|
set diffopt+=iwhite " ignore whitespace in diff command
|
|
set ttimeoutlen=50 " make changing modes a bit snappier
|
|
set hidden " allow swapping out of unsaved buffers
|
|
set complete=.,w,b,u,t " don't scan every file with autocomplete
|
|
if has('mksession')
|
|
set sessionoptions=blank,buffers,curdir,options,folds,tabpages,winsize,resize,winpos
|
|
end
|
|
|
|
if has('wildignore')
|
|
" ignore files that typically aren't interesting to text editors like vim
|
|
" FWIW, these lines don't need trailing commas
|
|
set wildignore=""
|
|
set wildignore+=.git,.svn,.hg,pkg,tmp
|
|
set wildignore+=*.bak,*.tmp,*.log,*.cache
|
|
set wildignore+=Desktop.ini,Thumbs.db,*.lnk,.DS_Store
|
|
set wildignore+=*.zip,*.tar,*.tar.*,*.7z
|
|
set wildignore+=*.suo,*.sln,*.pch,*.pdb,*.pgc,*.pgd
|
|
set wildignore+=*.o,*.obj,*.elf,*.lib,*.a,*.dll,*.so,*.so.*,*.exe,*.out
|
|
set wildignore+=*.wav,*.mp3,*.ogg,*.m4a,*.opus,*.mp4,*.mkv
|
|
set wildignore+=*.webp,*.png,*.jpg,*.jpeg,*.jfif,*.gif,*.pdf
|
|
set wildignore+=__pycache__,*.pyc,*.pyo,*.pyd,*.npy,*.npz,*.h5,*.pkl
|
|
set wildignore+=*.gem,.bundle
|
|
set wildignore+=CMakeCache.txt,CMakeFiles,install_manifest.txt
|
|
endif
|
|
|
|
let $PATH .= ':'.$HOME.'/sh' " allow direct invocation of shell funcs
|
|
|
|
" fun {{{1
|
|
|
|
" lifted from BurntSushi:
|
|
fu! GlobalReplace()
|
|
normal! gv"ry
|
|
let replacement = input("Replace " . @r . " with: ")
|
|
if replacement != ""
|
|
exe "%s/" . @r . "/" . replacement . "/g"
|
|
endif
|
|
endf
|
|
|
|
" lifted from BurntSushi:
|
|
fu! StripTrailingWhitespace()
|
|
let l = line(".")
|
|
let c = col(".")
|
|
%s/\s\+$//e
|
|
call cursor(l, c)
|
|
endf
|
|
|
|
fu! TabEight()
|
|
setlocal tabstop=8 shiftwidth=8 noexpandtab softtabstop=0
|
|
endf
|
|
|
|
fu! TabFour()
|
|
setlocal tabstop=8 shiftwidth=4 expandtab softtabstop=4
|
|
endf
|
|
|
|
fu! TabTwo()
|
|
setlocal tabstop=2 shiftwidth=2 expandtab
|
|
endf
|
|
|
|
fu! TabBad()
|
|
setlocal tabstop=4 shiftwidth=4 noexpandtab softtabstop=4
|
|
endf
|
|
|
|
" set TabFour as default
|
|
set tabstop=8 shiftwidth=4 expandtab softtabstop=4
|
|
|
|
fu! DetectShebang()
|
|
" vim has some rudimentary detection, but sometimes i want to override it.
|
|
" vim's version is typically found here: /usr/share/vim/vim82/scripts.vim
|
|
let l = getline(1)
|
|
let p = ''
|
|
|
|
if l =~# '^#!/usr/bin/env -S ' | let p = get(split(l, ' '), 2)
|
|
elseif l =~# '^#!/usr/bin/env ' | let p = get(split(l, ' '), 1)
|
|
elseif l =~# '^#!/usr/bin/.' | let p = get(split(l, '/'), 3)
|
|
elseif l =~# '^#!/s\?bin/.' | let p = get(split(l, '/'), 2)
|
|
endif
|
|
|
|
if p ==# 'bash' | setlocal ft=bash | endif
|
|
if p ==# 'dash' | setlocal ft=bash | endif
|
|
if p ==# 'false' | setlocal ft=bash | endif
|
|
if p ==# 'lua' | setlocal ft=lua | endif
|
|
if p ==# 'perl' | setlocal ft=perl | endif
|
|
if p ==# 'perl6' | setlocal ft=raku | endif
|
|
if p ==# 'python' | setlocal ft=python | endif
|
|
if p ==# 'python3' | setlocal ft=python | endif
|
|
if p ==# 'raku' | setlocal ft=raku | endif
|
|
if p ==# 'sh' | setlocal ft=bash | endif
|
|
if p ==# 'zsh' | setlocal ft=zsh | endif
|
|
endf
|
|
|
|
" autocmd {{{1
|
|
|
|
if has('autocmd')
|
|
augroup tabs
|
|
au!
|
|
au BufRead,BufNewFile PKGBUILD call TabTwo()
|
|
au FileType ruby call TabTwo()
|
|
au FileType nim call TabTwo()
|
|
au BufRead,BufNewFile *.bt,*.1sc call TabFour()
|
|
au BufRead,BufNewFile *.ys call TabTwo()
|
|
au FileType javascript,processing call TabTwo()
|
|
au BufRead,BufNewFile .gitconfig call TabEight()
|
|
augroup END
|
|
|
|
augroup filetypes
|
|
au!
|
|
au BufRead,BufNewFile *.lib setlocal ft=spice
|
|
au BufRead,BufNewFile *.bt setlocal ft=c
|
|
au BufRead,BufNewFile *.1sc setlocal ft=c
|
|
au BufRead,BufNewFile *.asm setlocal ft=lips
|
|
au BufRead,BufNewFile *.nim setlocal ft=nim
|
|
au BufRead,BufNewFile *.pde setlocal ft=processing
|
|
au BufRead,BufNewFile,StdinReadPost * call DetectShebang()
|
|
augroup END
|
|
|
|
augroup insanity
|
|
au!
|
|
au FileType netrw setlocal bufhidden=wipe
|
|
augroup END
|
|
|
|
augroup nocomment
|
|
au!
|
|
" set or unset some convenient or annoying formatoptions
|
|
au FileType * setlocal fo-=c fo-=r fo-=o
|
|
augroup END
|
|
|
|
augroup forth
|
|
au!
|
|
" insert a newline every 64 bytes when reading
|
|
au! BufReadCmd blkfs,*.scr call setline('1', split(join(readfile(expand('<afile>')), ''), '\%65c\zs'))
|
|
" remove newlines when writing
|
|
au! BufWriteCmd blkfs,*.scr call writefile([join(getline('^', '$'), '')], expand('<afile>'))
|
|
augroup end
|
|
|
|
augroup nobells " good lord vim you are archaic
|
|
au!
|
|
au GUIEnter * set vb t_vb=
|
|
augroup END
|
|
|
|
if has('syntax')
|
|
augroup fuckyou " why do you make me do this?
|
|
au!
|
|
au FileType vim syntax clear vim9Comment
|
|
augroup END
|
|
endif
|
|
|
|
fu! ResCur() " attempt to preserve cursor position
|
|
if line("'\"") > 1 && line("'\"") <= line("$")
|
|
normal! g`"
|
|
return 1
|
|
endif
|
|
endf
|
|
augroup resCur
|
|
au!
|
|
au BufWinEnter * call ResCur()
|
|
augroup END
|
|
endif
|
|
|
|
" keys/binds {{{1
|
|
|
|
set backspace=eol,start,indent " make backspace useful
|
|
|
|
" tab completion in command-line
|
|
if has('wildmenu') | set wildmenu | endif
|
|
|
|
" mintty pls
|
|
"exec "set <s-Tab>=\e[Z"
|
|
"map <Esc>[Z <s-tab>
|
|
"ounmap <Esc>[Z
|
|
|
|
" easy indent/unindent
|
|
nn <tab> >>
|
|
nn <s-tab> <<
|
|
" indentation without ending selection
|
|
vn <silent> <tab> >gv
|
|
vn <silent> <s-tab> <gv
|
|
|
|
fu! Inn(q)
|
|
" bind both normal and insert modes
|
|
let args=split(a:q, '^\s*\(<[^>]\+>\s\+\)\+\zs')
|
|
exec 'nn '.args[0].' '.args[1]
|
|
exec 'ino '.args[0].' <c-o>'.args[1]
|
|
endf
|
|
com! -nargs=+ Inn call Inn(<q-args>)
|
|
|
|
Inn <F5> :w<cr>
|
|
Inn <F6> :Next<cr>
|
|
Inn <F7> :next<cr>
|
|
Inn <F8> :e<cr>
|
|
Inn <F9> @@
|
|
Inn <F10> :bd<cr>
|
|
Inn <c-F5> :w!<cr>
|
|
Inn <c-F8> :e!<cr>
|
|
Inn <c-F10> :bd!<cr>
|
|
Inn <s-F5> :wall<cr>
|
|
|
|
" np++ habits
|
|
Inn <c-up> <c-y>
|
|
Inn <c-down> <c-e>
|
|
Inn <silent> <c-s-up> :m-2<cr>
|
|
Inn <silent> <c-s-down> :m+1<cr>
|
|
Inn <silent> <c-s-PageUp> :tabm -1<cr>
|
|
Inn <silent> <c-s-PageDown> :tabm +1<cr>
|
|
|
|
" jump to top and bottom
|
|
Inn <c-Home> gg
|
|
Inn <c-End> G
|
|
nn <Esc>[1;5H gg
|
|
nn <Esc>[1;5F G
|
|
ino <Esc>[1;5H <c-o>gg
|
|
ino <Esc>[1;5F <c-o>G
|
|
|
|
" hide search highlighting
|
|
Inn <silent> <c-]> :nohls<enter>
|
|
|
|
" rebind annoying things
|
|
" reflow text
|
|
nn Q gq
|
|
vn Q gq
|
|
" split lines (opposite of J)
|
|
nn K i<cr><esc>k$
|
|
vn K <nop>
|
|
" follow tag
|
|
nn <bar> <c-]>
|
|
" delete line
|
|
"nn D dd
|
|
|
|
" execute vim code in visual selection
|
|
vmap <space> "xy:@x<cr>
|
|
|
|
" open a shell (only works if you `exec vim` instead of running it in a shell)
|
|
nn <C-z> :sh<cr>
|
|
|
|
" this frees up x and X for use if you like
|
|
exec "set <s-Del>=\<Esc>[3;2~"
|
|
Inn <s-Del> X
|
|
|
|
let leader="\\"
|
|
"ino <c-\> <C-o><Leader> " this doesn't workkkkkkkkk
|
|
nm <Leader>a a?<Esc>r
|
|
nm <Leader>i i?<Esc>r
|
|
nn <Leader>, :Tab /,\zs<cr>
|
|
nn <Leader>. @:
|
|
nn <Leader><Leader> :<cr>
|
|
nn <Leader><space> :call StripTrailingWhitespace()<cr>
|
|
"nn <Leader>? :exec getline(".")
|
|
nn <Leader>F :E .<cr>
|
|
nn <Leader>P "0P
|
|
nn <Leader>b :ls<cr>:b<space>
|
|
nn <Leader>e :e **/*
|
|
nn <Leader>f :E<cr>
|
|
nn <Leader>p "0p
|
|
"nn <Leader>x :system('chmod +x %') | e
|
|
nn <silent> <Leader>d :cd %:p:h<cr>:pwd<cr>
|
|
|
|
vn <silent> & :call GlobalReplace()<cr>
|
|
|
|
" TODO:
|
|
"nn ,, :call CommentLines()<cr>
|
|
"nn ,. :call UncommentLines()<cr>
|
|
|
|
"!raku -e 'for lines() { say .chars, "\t", $_ }'
|
|
"!raku -e 'lines.sort({ $^a.subst(/\s*\\#/) cmp $^b.subst(/\s*\\#/) }).map(&say)'
|
|
"!raku -e 'lines.sort({ $^a.subst(/\s*\"/) cmp $^b.subst(/\s*\"/) }).map(&say)'
|
|
|
|
" alias :W to :w, via https://stackoverflow.com/a/3879737
|
|
cnoreabbrev <expr> W ((getcmdtype() is# ':' && getcmdline() is# 'W')?('w'):('W'))
|
|
|
|
" misc {{{1
|
|
|
|
set list listchars=tab:»·,trail:·,extends:…,nbsp:‗
|
|
" including this in case i'm on a _really_ bad terminal:
|
|
"set list listchars=tab:>-,trail:.,extends:>,nbsp:_
|
|
|
|
try | exec pathogen#infect() | catch /E117/ | endtry
|
|
|
|
let g:netrw_banner=0
|
|
|
|
set background=dark
|
|
try
|
|
colorscheme property16
|
|
catch /E185/
|
|
colorscheme desert
|
|
endtry
|
|
|
|
let g:netrw_fastbrowse = 0 " so THAT'S what's been causing me agony
|
|
|
|
" ctrlp {{{1
|
|
|
|
map <silent> <c-n> :CtrlPBuffer<cr>
|
|
let g:ctrlp_match_window='bottom,order:btt,min:1,max:24,results:24'
|
|
|
|
" machine-specific configs {{{1
|
|
|
|
let s:hostname=hostname()
|
|
if s:hostname == "phantom-pi" || s:hostname == "wraith"
|
|
colo Tomorrow-Night
|
|
endif
|