dotfiles/.vimrc

28 lines
372 B
VimL
Raw Normal View History

2020-06-25 04:59:32 +08:00
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
2020-10-17 15:38:32 +08:00
" search
set incsearch
2020-06-25 04:59:32 +08:00
" theme
set background=dark
colorscheme solarized
" transparancy for background
"hi Normal guibg=NONE ctermbg=NONE
2021-02-18 18:21:36 +08:00
" utf-8 encoding
set encoding=utf8
set fileencoding=utf8