You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

393 lines
15 KiB
VimL

"
" Author: Hari Sekhon
" Date: 2006-07-01 22:52:16 +0100 (Sat, 01 Jul 2006)
"
5 years ago
" ============================================================================ "
5 years ago
" v i m r c
5 years ago
" ============================================================================ "
" to reload without restarting vim
"
" :source ~/.vimrc
5 years ago
syn on
5 years ago
highlight StatusLine ctermfg=yellow ctermbg=darkgray
highlight StatusLineNC ctermfg=darkgrey ctermbg=yellow
5 years ago
highlight VertSplit ctermfg=darkgrey ctermbg=yellow
5 years ago
5 years ago
set visualbell
5 years ago
" ============================================================================ "
" S e t C o n f i g
" ============================================================================ "
" show all settable option values and their values
"set all
set ai " autoindent
set bg=dark " background
set et " expandtab
set ic " ignorecase
set is " incsearch
"set list " visually displays eol, tabs etc so you can always see them
5 years ago
set ls=1 " laststatus - Status line 0=off, 1=multi-windows, 2=on
set listchars=tab:>-,eol:$,trail:.,extends:# " changes the list characters, makes tabs appear as >---
5 years ago
set ml " modeline - respect the vim: stuff at the stop of files, often off for root
set mls=15 " modelines - Controls how many lines to check for modeline, systems often set this to 0
set nocp " nocompatible
set nofen "nofoldenable
set nohls " nohlsearch
"set nu " number (column on left)
set ru " ruler
set sm " showmatch. show matching brackets {}
set scs " smartcase. switch to case sensitive match if uppercase letter is detected
set si " smartindent
set smd " showmode
5 years ago
" enabling either one of these causes deleting 4 spaces with each backspace, often over deletes when writing yaml / docs
5 years ago
set sta " smarttab - make 'tab' insert indents instead of tabs at beginning of line
set sts=4 " softtabstop
5 years ago
set sw=4 " shiftwidth - number of spaces for indentation, should be the same as tabstop really to make tabs and Shift-> the same width
set ts=4 " tabstop
set tw=0 " textwidth (stops auto wrapping)
set viminfo='100,<1000,s10,h " save <1000 lines in the registers instead of <50 lines between files since otherwise I lose lots of lines when deleting and pasting between files
set wrap " line wrapping
5 years ago
" reload the buffer when file has changed but buffer has not (useful for 'go fmt' / 'git pull' hotkeys from within vim)
set autoread
set encoding=utf-8 " The encoding displayed.
set fileencoding=utf-8 " The encoding written to file.
5 years ago
" add comment to next line when using 'o' in command mode
" add comment to next line when using Insert mode
set formatoptions+=or
5 years ago
5 years ago
" ============================================================================ "
5 years ago
" G U I
" ============================================================================ "
" see also ~/.gvimrc.local sourcing at bottom of this config
"behave mswin
be xterm
:if has("gui_running")
"colorscheme slate
colo slate
:endif
5 years ago
" ============================================================================ "
" P l u g i n s
" ============================================================================ "
filetype plugin on
5 years ago
filetype plugin indent on
"filetype off
" shows what last set ts, ie .vimrc
":verbose set ts
" set scrollbind - in each window then windows will scroll together
5 years ago
" =======
" Vundle
"
" to install plugins do:
"
" :PluginInstall
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'tmux-plugins/vim-tmux'
call vundle#end()
5 years ago
" ============================================================================ "
" A u t o c m d
" ============================================================================ "
5 years ago
nmap ;l :echo "No linting defined for this filetype:" &filetype<CR>
5 years ago
5 years ago
if has("autocmd")
5 years ago
" re-open at last cursor line and center screen on the cursor line
"au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
autocmd BufReadPost *
\ if line ("'\"") > 0 && line ("'\"") <= line ("$") |
\ exe "normal! g`\"" |
5 years ago
\ exe "normal! g`\"zz" |
\ endif
5 years ago
" on write - auto-strip trailing whitespace on lines and remove trailing whitespace only lines end at of file
autocmd BufWritePre * %s/\s\+$//e | %s#\($\n\s*\)\+\%$##e
5 years ago
" doubles up with nmap ;l
"au BufWritePost *.tf,*.tfvars :!clear; cd "`dirname "%"`" && terraform fmt -diff; terraform validate
5 years ago
" highlight trailing whitespace
" XXX: doesn't work
"autocmd ColorScheme * highlight ExtraWhitespace ctermbg=red guibg=red
5 years ago
" this works - not using now we auto-strip trailing whitespace above on write anyway and it feels like this constant on/off highlighting slows things down and wastes energy
"autocmd Filetype * match Error /\s\+$/
au BufNewFile,BufRead Makefile set noet
5 years ago
au BufNewFile,BufRead *Jenkinsfile* set filetype=groovy
au BufNewFile,BufRead LICENSE set tw=80
"au BufRead,BufNewFile perl set ts=4 st=4
"au BufRead,BufNewFile *.pl set ts=4 st=4
"au BufNew,BufRead *.pp set syntax=conf
" filetype is better than syntax since it figures out indentation and tab completion etc and the ruby is better than conf since it gives more syntax highlighting
au BufNew,BufRead *.pp set filetype=ruby sts=2 sw=2 ts=2
au BufNew,BufRead *.yml set sts=2 sw=2 ts=2
au BufNew,BufRead *.yaml set sts=2 sw=2 ts=2
5 years ago
au BufNew,BufRead *.groovy,*.gvy,*.gy,*.gsh set filetype=groovy
5 years ago
au BufNew,BufRead *.jsh set filetype=java
5 years ago
"au BufNew,BufRead *.rb set filetype=ruby sts=2 sw=2 ts=2
" this will disable
"au BufNew,BufRead *.txt set ft=
au BufNew,BufRead *.txt hi def link confString NONE
augroup filetypedetect
au! BufRead,BufNewFile *.hta setfiletype html
augroup end
5 years ago
" headtail.py is useful to see the top things to fix and the score on each run and can be found in the
" https://github.com/HariSekhon/Python-DevOps-Tools repo which should be downloaded, run 'make' and add to $PATH
5 years ago
au BufNew,BufRead *.py nmap ;l :w<CR>:!clear; pylint "%" \| headtail.py<CR>
au BufNew,BufRead *.pl nmap ;l :w<CR>:!clear; perl -I . -tc "%"<CR>
au BufNew,BufRead *.rb nmap ;l :w<CR>:!clear; ruby -c "%"<CR>
5 years ago
au BufNew,BufRead *.go nmap ;l :w<CR>:!gofmt -w "%" && go build "%"<CR>
5 years ago
5 years ago
" TODO: groovy/java CLI linters
5 years ago
au BufNew,BufRead *.groovy,*.gvy,*.gy,*.gsh nmap ;l :w<CR>:!groovyc "%"<CR>
5 years ago
au BufNew,BufRead .bash*,*.sh,*.ksh nmap ;l :w<CR>:!clear; shellcheck -Calways "%" \| more -R<CR>
5 years ago
" for scripts that don't end in .sh like Google Cloud Shell's .customize_environment
" doesn't trigger on window switching
au FileType sh nmap ;l :w<CR>:!clear; shellcheck -Calways "%" \| more -R<CR>
5 years ago
5 years ago
" these tools are in the https://github.com/HariSekhon/Python-DevOps-Tools repo which should be downloaded, run 'make' and add to $PATH
5 years ago
au BufNew,BufRead *.csv nmap ;l :w<CR>:!clear; validate_csv.py "%"<CR>
au BufNew,BufRead *.cson nmap ;l :w<CR>:!clear; validate_cson.py "%"<CR>
au BufNew,BufRead *.json nmap ;l :w<CR>:!clear; validate_json.py "%"; echo; check_json.sh "%" \| more -R<CR>
au BufNew,BufRead *.ini nmap ;l :w<CR>:!clear; validate_ini.py "%"; validate_ini2.py "%"<CR>
5 years ago
au BufNew,BufRead *.php nmap ;l :w<CR>:!clear; php5 -l "%"<CR>
5 years ago
au BufNew,BufRead *.properties nmap ;l :w<CR>:!clear; validate_properties.py "%"<CR>
au BufNew,BufRead *.ldif nmap ;l :w<CR>:!clear; validate_ldap_ldif.py "%"<CR>
5 years ago
au BufNew,BufRead *.md nmap ;l :w<CR>:!clear; mdl "%" \| more -R<CR>
5 years ago
"au BufNew,BufRead *.sql nmap ;l :w<CR>:!clear; TODO "%" \| more -R<CR>
5 years ago
au BufNew,BufRead *.scala nmap ;l :w<CR>:!clear; scalastyle -c "$bash_tools/scalastyle_config.xml" "%" \| more -R<CR>
5 years ago
au BufNew,BufRead *.tf,*.tfvars nmap ;l :w<CR>:!clear; cd "`dirname "%"`" && { terraform fmt -diff; terraform validate; } \| more -R<CR>
5 years ago
au BufNew,BufRead *.toml nmap ;l :w<CR>:!clear; validate_toml.py "%"<CR>
au BufNew,BufRead *.xml nmap ;l :w<CR>:!clear; validate_xml.py "%"<CR>
5 years ago
" TODO: needs fix to allow multiple inline yaml docs in 1 file
"au BufNew,BufRead *.yml,*.yaml nmap ;l :w<CR>:!clear; validate_yaml.py "%"<CR>
au BufNew,BufRead *.yml,*.yaml nmap ;l :w<CR>:!clear; js-yaml "%" >/dev/null && echo YAML OK<CR>
5 years ago
" more specific matches like pom.xml need to come after less specific matches like *.xml as last statement wins
au BufNew,BufRead *pom.xml* nmap ;l :w<CR>:!clear; mvn validate -f "%" \| more -R<CR>
5 years ago
" check_makefile.sh is in this repo which should be added to $PATH
5 years ago
au BufNew,BufRead *Makefile* nmap ;l :w<CR>:!clear; check_makefile.sh "%" \| more -R<CR>
5 years ago
au BufNew,BufRead *build.gradle* nmap ;l :w<CR>:!clear; gradle -b "%" -m clean build \| more -R<CR> | nmap ;r :!gradle -b "%" clean build<CR>
au BufNew,BufRead *build.sbt* nmap ;l :w<CR>:!clear; cd "`dirname "%"`" && echo q \| sbt reload "%" \| more -R<CR>
5 years ago
au BufNew,BufRead *.travis.yml* nmap ;l :w<CR>:!clear; travis lint "%" \| more -R<CR>
au BufNew,BufRead *Dockerfile* nmap ;l :w<CR>:!clear; hadolint "%" \| more -R<CR>
5 years ago
5 years ago
endif
5 years ago
5 years ago
" ============================================================================ "
" K e y b i n d i n g s
" ============================================================================ "
"nmap <silent> ;c :call Cformat()<CR>
5 years ago
nmap <silent> ;a :,!anonymize.py -a<CR>
nmap <silent> ;b :!git blame "%"<CR>
nmap <silent> ;c :,!center.py<CR>
nmap <silent> ;e :,!center.py -s<CR>
nmap <silent> ;d :r !date '+\%F \%T \%z (\%a, \%d \%b \%Y)'<CR>kJ
nmap <silent> ;D :Done<CR>
5 years ago
nmap ;f :,!fold -s -w 120 \| sed 's/[[:space:]]*$//'<CR>
"nmap <silent> ;h :call Hr()<CR>
nmap <silent> ;h :Hr<CR>
5 years ago
" this keystroke would probably mess people up, call manually since it's best
" used in visual blocks anyway
"nmap ;H :,!hexanonymize.py --case --hex-only<CR>
5 years ago
nmap ;H :call WriteHelp()<CR>
" this inserts Hr literally
"imap <silent> <C-H> :Hr<CR>
nmap <silent> ;j :JHr<CR>
"nmap <silent> ;' :call Sq()<CR>
5 years ago
" done automatically on write now
"nmap <silent> ;' :call StripTrailingWhiteSpace()<CR>
nmap <silent> ;' :w<CR> :!clear; git diff "%"<CR>
nmap ;n :n<CR>
5 years ago
nmap ;o :!git log -p "%"<CR>
nmap ;p :prev<CR>
nmap ;q :q<CR>
nmap ;r :call WriteRun()<CR>
5 years ago
nmap ;R :call WriteRunDebug()<CR>
"nmap <silent> ;s :call ToggleSyntax()<CR>
nmap <silent> ;s :,!sqlcase.pl<CR>
5 years ago
"nmap ;u :call HgGitU()<CR>
"nmap ;; :call HgGitU()<CR>
" command not found
"nmap ;; :! . ~/.bashrc; gitu "%"<CR>
5 years ago
nmap ;; :w<CR> :! bash -ic 'gitu "%"'<CR>
5 years ago
nmap ;g :! bash -ic 'cd $(dirname "%") && st'<CR>
5 years ago
nmap ;G :! bash -ic 'cd $(dirname "%") && git log -p'<CR>
5 years ago
nmap ;. :! bash -ic 'cd $(dirname "%") && pull'<CR>
nmap ;[ :! bash -ic 'cd $(dirname "%") && push'<CR>
5 years ago
nmap ;u :!urlview "%"<CR><CR>
5 years ago
nmap ;v :source ~/.vimrc<CR>
nmap ;w :w<CR>
"nmap ;x :x<CR>
5 years ago
nmap ;§ :call ToggleScrollLock()<CR>
" breaks ;; nmap
"nmap ;\ :source ~/.vimrc<CR>
nmap ;/ :source ~/.vimrc<CR>
5 years ago
" ============================================================================ "
" F u n c t i o n s
" ============================================================================ "
function! ToggleSyntax()
if exists("g:syntax_on")
syntax off
else
syntax enable
endif
endfunction
5 years ago
" setting this high keeps cursor in middle of screen
":set so=999
function! ToggleScrollLock()
if &scrolloff > 0
:set scrolloff=0
else
:set scrolloff=999
endif
endfunction
5 years ago
:command! Hr :normal a# <ESC>76a=<ESC>a #<ESC>
":function Hr()
":s/^/# ============================================================================ #/
"if b:current_syntax eq "sql"
" ::normal a-- <ESC>74a=<ESC>a --<ESC>
"else
":normal a# <ESC>76a=<ESC>a #<ESC>
"endif
":endfunction
":function Br()
":call Hr()
":endfunction
5 years ago
:command! Br :Hr
"function JHr()
" s,^,// ========================================================================== //,
"endfunction
":command JHr :normal a// ========================================================================== //<ESC>lx
5 years ago
:command! JHr :normal a// <ESC>74a=<ESC>a //<ESC>
5 years ago
:command! Done :normal 37a=<ESC>a DONE <ESC>37a=<ESC>
":function RemoveIPs()
" : %s/\d\+\.\d\+\.\d\+\.\d\+/<IP_REMOVED>/gc
":endfunction
"
":function RemoveMacs()
" : %s/\w\w:\w\w:\w\w:\w\w:\w\w:\w\w/<MAC_REMOVED>/gc
":endfunction
"
":function RemoveDomains()
" : %s/company1/<DOMAIN_REMOVED>/gci
" : %s/company2/<DOMAIN_REMOVED>/gci
":endfunction
5 years ago
function! Scrub()
": call RemoveIPs()
": call RemoveMacs()
": call RemoveDomains()
5 years ago
" Anonymizer is found in adjacent DevOps Python Tools repo which should be added to $PATH
" there is also a faster version in DevOps Perl Tools repo
:%!anonymize.py --all
endfunction
" StripQuotes()
5 years ago
function! Sq()
:s/["']//g
endfunction
5 years ago
function! StripTrailingWhiteSpace()
:%s/[[:space:]]*$//
endfunction
5 years ago
function! WriteHelp()
:w
if &filetype == 'go'
:! go run "%" --help 2>&1 | less
else
:! "./%" --help 2>&1 | less
endif
endfunction
5 years ago
function! WriteRun()
:w
5 years ago
if &filetype == 'go'
5 years ago
:! go run "%" `$bash_tools/lib/args_extract.sh "%"` 2>&1 | less
5 years ago
else
5 years ago
:! "./%" `$bash_tools/lib/args_extract.sh "%"` 2>&1 | less
5 years ago
endif
5 years ago
endfunction
function! WriteRunDebug()
:w
5 years ago
if &filetype == 'go'
5 years ago
:! DEBUG=1 bash -c "go run % `$bash_tools/lib/args_extract.sh "%"` 2>&1 | less"
5 years ago
else
5 years ago
:! DEBUG=1 bash -c "./% `$bash_tools/lib/args_extract.sh "%"` 2>&1 | less"
5 years ago
endif
endfunction
5 years ago
" ============================================================================ "
" L o c a l C o n f i g S o u r c i n g
" ============================================================================ "
5 years ago
" either works, requires expand()
"let MYLOCALVIMRC = "~/.vimrc.local"
"let MYLOCALVIMRC = "$HOME/.vimrc.local"
5 years ago
" source a config file only if it exists
5 years ago
function! SourceIfExists(file)
if filereadable(expand(a:file))
exe 'source' a:file
endif
endfunction
call SourceIfExists("~/.vimrc.local")
call SourceIfExists("~/.vim/colors.vim")
if has('gui_running')
call SourceIfExists("~/.gvimrc.local")
endif