dotfiles/.vimrc
2020-10-17 15:38:32 +08:00

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