]> git.sev.monster Git - dotfiles.git/blob - base/.vimrc
add mpc-notify
[dotfiles.git] / base / .vimrc
1 if v:progname =~? "evim"
2   finish
3 endif
4 source $VIMRUNTIME/defaults.vim
5
6 packadd matchit
7
8 set backup
9 set backupdir=$HOME/tmp/vim//
10 set undofile
11 set undodir=$HOME/tmp/vim//
12
13 set autoindent
14 set colorcolumn=80
15 highlight ColorColumn term=NONE ctermbg=0
16 autocmd FileType python     setlocal tabstop=4 shiftwidth=4 expandtab
17 autocmd FileType markdown   setlocal tabstop=4 shiftwidth=4 expandtab
18 autocmd FileType javascript setlocal tabstop=2 shiftwidth=2 expandtab
19 autocmd FileType json       setlocal tabstop=2 shiftwidth=2 expandtab
20 autocmd FileType html       setlocal tabstop=2 shiftwidth=2 expandtab
21 autocmd FileType todo       setlocal colorcolumn=0
22
23 set cursorline
24 set hlsearch
25 set list
26 set listchars=tab:├─,extends:»,precedes:«,space:·,trail:∙,nbsp:■
27 set number
28 set relativenumber
29 autocmd InsertEnter * setlocal norelativenumber
30 autocmd InsertLeave * setlocal   relativenumber
31 autocmd FocusLost   * setlocal norelativenumber
32 autocmd FocusGained * setlocal   relativenumber
33
34 " vim:sts=4:sw=4:et:tw=79
This page took 0.095754 seconds and 4 git commands to generate.