13 lines
195 B
VimL
13 lines
195 B
VimL
filetype plugin indent on
|
|
" show existing tab with 4 spaces width
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
set expandtab
|
|
|
|
|
|
" setting color theme stuff
|
|
set background=dark
|
|
syntax enable
|
|
colorscheme hybrid
|
|
|