mydot/vim/.vimrc

24 lines
334 B
VimL
Raw Normal View History

2023-07-11 10:41:59 +03:00
" Common.
set encoding=utf-8
set fileencoding=utf-8
set nobackup
set noswapfile
" Tabs.
set expandtab
set tabstop=2
set shiftwidth=2
" Lines.
set number
set relativenumber
set cursorline
set colorcolumn=79
" set list
" set listchars=tab:-→
" set listchars=space:⋅,eol:$,tab:--,trail:~,extends:>,precedes:<
" Colors.
syntax on