kunsis-dotfiles/.vimrc

39 lines
673 B
VimL
Raw Normal View History

2018-08-24 09:27:59 +00:00
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
2021-02-15 08:59:11 +00:00
set mouse=
set ttymouse=
2018-08-24 09:27:59 +00:00
set cursorline
syntax on
set showcmd
2018-10-31 12:53:51 +00:00
set encoding=utf-8
2018-08-24 09:27:59 +00:00
set autowrite
set noautochdir
2020-06-21 11:23:06 +00:00
set list
set listchars=trail:␣,tab:→\ ,extends:>,precedes:<
2018-08-24 09:27:59 +00:00
set hlsearch
map <silent> <c-k> :nohlsearch<CR>
2018-10-31 12:53:51 +00:00
set colorcolumn=72,120
2018-08-24 09:27:59 +00:00
hi colorcolumn ctermbg=NONE ctermfg=red cterm=bold guibg=NONE guifg=red gui=bold
2018-08-28 15:35:32 +00:00
au BufRead /tmp/neomutt-* set tw=72
2018-08-24 09:27:59 +00:00
au BufRead /tmp/mutt-* set tw=72
2021-02-15 08:52:05 +00:00
noremap d l
noremap t k
noremap r j
noremap n h
2021-02-15 08:59:11 +00:00
map <C-n> :tabr<cr>
map <C-r> :tabn<cr>
map <C-t> :tabp<cr>
map <C-d> :tabl<cr>