dotfiles/.vimrc

21 lines
290 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
" theme
set background=dark
colorscheme solarized
" transparancy for background
"hi Normal guibg=NONE ctermbg=NONE