dotfiles/.vimrc

24 lines
314 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