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:-→
2024-01-19 09:53:30 +03:00
" set listchars=space:◦,eol:$,tab:--,trail:~,extends:>,precedes:<
2023-07-11 10:41:59 +03:00
" Colors.
syntax on