dotfiles/.vimrc
2021-02-18 18:21:36 +08:00

28 lines
372 B
VimL

filetype plugin on
syntax on
" numbering
set number
set relativenumber
" indenting
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
filetype plugin indent on
" search
set incsearch
" theme
set background=dark
colorscheme solarized
" transparancy for background
"hi Normal guibg=NONE ctermbg=NONE
" utf-8 encoding
set encoding=utf8
set fileencoding=utf8