]> git.sev.monster Git - dotfiles.git/blame - base/.vimrc
update zsh, X, gpg config; add ssh config, gpg bin
[dotfiles.git] / base / .vimrc
CommitLineData
189288f7 1source $VIMRUNTIME/defaults.vim
2
3packadd matchit
4
f993e922 5set modeline "!!!
6
189288f7 7set backup
1f8bf106 8set backupdir=$HOME/var/tmp/vim//
189288f7 9set undofile
1f8bf106 10set undodir=$HOME/var/tmp/vim//
189288f7 11
12set autoindent
189288f7 13set colorcolumn=80
25599a8f 14highlight ColorColumn term=NONE ctermbg=0
f993e922 15" filetype should be on from defaults.vim
189288f7 16autocmd FileType python setlocal tabstop=4 shiftwidth=4 expandtab
17autocmd FileType markdown setlocal tabstop=4 shiftwidth=4 expandtab
18autocmd FileType javascript setlocal tabstop=2 shiftwidth=2 expandtab
19autocmd FileType json setlocal tabstop=2 shiftwidth=2 expandtab
20autocmd FileType html setlocal tabstop=2 shiftwidth=2 expandtab
25599a8f 21autocmd FileType todo setlocal colorcolumn=0
189288f7 22
23set cursorline
24set hlsearch
189288f7 25set list
26set listchars=tab:├─,extends:»,precedes:«,space:·,trail:∙,nbsp:■
27set number
28set relativenumber
25599a8f 29autocmd InsertEnter * setlocal norelativenumber
30autocmd InsertLeave * setlocal relativenumber
31autocmd FocusLost * setlocal norelativenumber
32autocmd FocusGained * setlocal relativenumber
1f53b630 33highlight WhiteSpaceBol ctermfg=DarkBlue
34highlight WhiteSpaceMol ctermfg=Black
35match WhiteSpaceMol / /
362match WhiteSpaceBol /\(^ \+\)\|\( \+$\)/
25599a8f 37
f993e922 38let g:Modeliner_format='ft= fenc= et ts= sts= sw= tw='
39
40" vim: set et fenc=utf-8 ft=vim sts=4 sw=4 ts=8 tw=79 :
This page took 0.036947 seconds and 4 git commands to generate.