kunsis-dotfiles/.vimrc

39 lines
673 B
VimL

set number
set lbr
set fdc=0
set vb
set expandtab
set shiftwidth=4
set tabstop=4
set softtabstop=4
set linespace=0
set autoindent
set smartindent
set mouse=
set ttymouse=
set cursorline
syntax on
set showcmd
set encoding=utf-8
set autowrite
set noautochdir
set list
set listchars=trail:␣,tab:→\ ,extends:>,precedes:<
set hlsearch
map <silent> <c-k> :nohlsearch<CR>
set colorcolumn=72,120
hi colorcolumn ctermbg=NONE ctermfg=red cterm=bold guibg=NONE guifg=red gui=bold
au BufRead /tmp/neomutt-* set tw=72
au BufRead /tmp/mutt-* set tw=72
noremap d l
noremap t k
noremap r j
noremap n h
map <C-n> :tabr<cr>
map <C-r> :tabn<cr>
map <C-t> :tabp<cr>
map <C-d> :tabl<cr>