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.

541 lines
20 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
5 years ago
" write buffer on next / prev etc
set autowrite
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'
5 years ago
Plugin 'airblade/vim-gitgutter'
5 years ago
Plugin 'hashivim/vim-consul'
"Plugin 'hashivim/vim-nomadproject'
"Plugin 'hashivim/vim-ottoproject'
Plugin 'hashivim/vim-packer'
Plugin 'hashivim/vim-terraform'
Plugin 'hashivim/vim-vagrant'
"Plugin 'hashivim/vim-vaultproject'
"Plugin 'vim-syntastic/syntastic'
Plugin 'juliosueiras/vim-terraform-completion'
5 years ago
" gets in the way editing more than it helps because it adds doubles of quotes
" and braces that often break edits or require more keystrokes to remove than saved
"Plugin 'jiangmiao/auto-pairs'
5 years ago
Plugin 'preservim/nerdcommenter'
5 years ago
Plugin 'tmux-plugins/vim-tmux'
5 years ago
"Plugin 'tpope/vim-commentary'
5 years ago
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-surround'
4 years ago
"Plugin 'fatih/vim-go'
5 years ago
5 years ago
let g:gitgutter_enabled = 0
" keep setting if reloading, otherwise default to 1 for enabled
"let g:pluginname_setting = get(g:, 'gitgutter_enabled', 1)
5 years ago
5 years ago
" align settings automatically with Tabularize
let g:terraform_align=1
let g:terraform_fmt_on_save=1
" Syntastic Config
5 years ago
"set statusline+=%#warningmsg#
"set statusline+=%{SyntasticStatuslineFlag()}
"set statusline+=%*
5 years ago
"let g:syntastic_always_populate_loc_list = 1
"let g:syntastic_auto_loc_list = 1
"let g:syntastic_check_on_open = 1
"let g:syntastic_check_on_wq = 0
" (Optional) Enable terraform plan to be include in filter
"let g:syntastic_terraform_tffilter_plan = 1
5 years ago
call vundle#end()
5 years ago
5 years ago
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
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
4 years ago
"au BufWritePost *.tf,*.tfvars :!clear; cd "%:p:h" && 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
5 years ago
au BufNew,BufRead *.tf set sts=2 sw=2 ts=2 filetype=conf
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
" autocmd FileType c,cpp,java,scala let b:comment_char = '//'
" autocmd FileType sh,perl,python let b:comment_char = '#'
" autocmd FileType ruby let b:comment_char = '#'
" autocmd FileType conf,dockerfile,fstab let b:comment_char = '#'
" autocmd FileType sql let b:comment_char = '--'
" autocmd FileType tex let b:comment_char = '%'
" autocmd FileType mail let b:comment_char = '>'
" autocmd FileType vim let b:comment_char = '"'
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
" :e reloads the file because autoread isn't working after gofmt in this case
5 years ago
au BufNew,BufRead *.go nmap ;l :w<CR> :!gofmt -w "%" && go build "%"<CR>
" breaks waiting to see go build error
" :e<CR>
" to make vim autoread after gofmt
" doesn't seem to work, using explicit :e now
"au CursorHold * checktime
"au CursorHold,CursorHoldI * checktime
"au FocusGained,BufEnter * :checktime
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
4 years ago
au BufNew,BufRead .bash*,*.sh,*.ksh nmap ;l :w<CR>:!clear; cd "%:p:h" && shellcheck -x -Calways "$(basename "%")" \| 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
4 years ago
au FileType sh nmap ;l :w<CR>:!clear; cd "%:p:h" && shellcheck -x -Calways "$(basename "%")" \| 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>
4 years ago
au BufNew,BufRead *.tf,*.tfvars nmap ;l :w<CR>:!clear; cd "%:p:h" && { 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>
4 years ago
au BufNew,BufRead *build.sbt* nmap ;l :w<CR>:!clear; cd "%:p:h" && 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>
5 years ago
nmap ;A :,!hexanonymize.py --case --hex-only<CR>
5 years ago
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
nmap ;H :call WriteHelp()<CR>
" this inserts Hr literally
"imap <silent> <C-H> :Hr<CR>
5 years ago
nmap <silent> ;I :PluginInstall<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>
5 years ago
nmap ;O :call ToggleGutter()<CR>
nmap ;p :prev<CR>
5 years ago
nmap ;P :call TogglePaste()<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>
4 years ago
nmap ;g :w<CR> :! bash -ic 'cd "%:p:h" && st'<CR>
nmap ;G :w<CR> :! bash -ic 'cd "%:p:h" && git log -p "%"'<CR>
4 years ago
nmap ;L :w<CR> :! bash -ic 'cd "%:p:h" && git log -p'<CR>
4 years ago
nmap ;. :w<CR> :! bash -ic 'cd "%:p:h" && pull'<CR>
nmap ;[ :w<CR> :! bash -ic 'cd "%:p:h" && push'<CR>
4 years ago
nmap <silent> ;u :w<CR> :! grep -v harisekhon "%" \| urlview <CR>
5 years ago
" pass current line as stdin to urlview to quickly go to this url
5 years ago
" messes up interactive vim (disables vim's arrow keys) - calling a terminal reset fixes it
5 years ago
nmap <silent> ;U :.w !urlview<CR> :!reset<CR><CR>
5 years ago
" breaks ;; nmap
"nmap ;\ :source ~/.vimrc<CR>
nmap ;/ :source ~/.vimrc<CR>
5 years ago
nmap ;v :source ~/.vimrc<CR>
nmap ;w :w<CR>
"nmap ;x :x<CR>
5 years ago
nmap ;§ :call ToggleScrollLock()<CR>
5 years ago
"noremap <silent> ,cc :<C-B>silent <C-E>s/^/<C-R>=escape(b:comment_char,'\/')<CR>/<CR>:nohlsearch<CR>
"noremap <silent> ,cu :<C-B>silent <C-E>s/^\V<C-R>=escape(b:comment_char,'\/')<CR>//e<CR>:nohlsearch<CR>
5 years ago
" reloading with these didn't fix above pipe disabling arrow keys but
" adding a terminal reset after the pipe command did fix it
"noremap <Up> <Up>
"noremap <Down> <Down>
"noremap <Left> <Left>
"noremap <Right> <Right>
5 years ago
if has("autocmd")
au BufNew,BufRead *docker-compose.y*ml nmap ;r :w<CR>:!clear; docker-compose -f "%" up<CR>
endif
4 years ago
if has("autocmd")
4 years ago
au BufNew,BufRead **/haproxy-configs/*.cfg nmap ;r :w<CR>:!clear; haproxy -f "%:p:h/10-global.cfg" -f "%:p:h/20-stats.cfg" -f "%"<CR>
4 years ago
endif
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
"function! ToggleComment()
" let comment_prefix = '^' . b:comment_char
" echo comment_prefix
" if getline('.') =~ comment_prefix
" :s/^\=get(b:comment_char)//
" else
" :s/^/\=get(b:comment_char)/
" 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
function! TogglePaste()
if &paste > 0
:set nopaste
else
:set paste
endif
endfunction
5 years ago
" changing this setting has no effect on vim gutter in real time
function! ToggleGutter()
:let g:gitgutter_enabled = 0
"if g:gitgutter_enabled > 0
"if get(g:, 'gitgutter_enabled', 0) > 0
" :let g:gitgutter_enabled = 0
"else
" :let g:gitgutter_enabled = 1
"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'
4 years ago
" TODO: consider switching this to go build and then run the binary as
" this gets stdout only at the end so things like welcome.go don't get
" the transition effects when run like this
4 years ago
:! eval go run "%:p" `$bash_tools/lib/args_extract.sh "%:p"` 2>&1 | less
4 years ago
" doesn't work, probably due to no first class support so just get file extension
"elseif &filetype == 'tf'
elseif expand('%:e') == 'tf'
:call TerraformPlan()
4 years ago
elseif expand('%:t') == 'Makefile'
4 years ago
:call Make()
4 years ago
elseif expand('%:t') == 'Dockerfile'
" "%:p:h" is dirname
4 years ago
if filereadable(join([expand("%:p:h"), "Makefile"], "/"))
:call Make()
else
:! docker build "%:p:h"
endif
5 years ago
else
4 years ago
" this only works for scripts
":! eval "%:p" `$bash_tools/lib/args_extract.sh "%:p"` 2>&1 | less
" but this now works for config files too which can have run headers
" instead of args headers
:! "$bash_tools/lib/run.sh" "%:p" 2>&1 | less
5 years ago
endif
5 years ago
endfunction
function! WriteRunDebug()
4 years ago
:let $DEBUG=1
:call WriteRun()
4 years ago
:let $DEBUG=""
endfunction
4 years ago
function! Make()
" '%:p:h' is dirname
:! bash -c 'cd "%:p:h" && make'
endfunction
4 years ago
function! TerraformPlan()
" '%:p:h' is dirname
:! bash -c 'cd "%:p:h" && terraform plan'
endfunction
4 years ago
"function! TerraformApply()
" " '%:p:h' is dirname
" :! bash -c 'cd "%:p:h" && terraform apply'
"endfunction
5 years ago
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