dotfiles/.vimrc
2020-06-24 21:59:32 +01:00

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