if v:progname =~? "evim" finish endif source $VIMRUNTIME/defaults.vim packadd matchit set backup set backupdir=$HOME/tmp/vim// set undofile set undodir=$HOME/tmp/vim// set autoindent set colorcolumn=80 autocmd FileType python setlocal tabstop=4 shiftwidth=4 expandtab autocmd FileType markdown setlocal tabstop=4 shiftwidth=4 expandtab autocmd FileType javascript setlocal tabstop=2 shiftwidth=2 expandtab autocmd FileType json setlocal tabstop=2 shiftwidth=2 expandtab autocmd FileType html setlocal tabstop=2 shiftwidth=2 expandtab set cursorline set hlsearch nnoremap :noh set list set listchars=tab:├─,extends:»,precedes:«,space:·,trail:∙,nbsp:■ set number set relativenumber autocmd InsertEnter * :set norelativenumber autocmd InsertLeave * :set relativenumber autocmd FocusLost * :set norelativenumber autocmd FocusGained * :set relativenumber