mirror of
1
0
Fork 0

updated personal configs

This commit is contained in:
Siew Yi Liang 2016-01-29 17:45:12 -05:00
parent 1b26a37854
commit 0bdc6e3a56
1 changed files with 22 additions and 1 deletions

View File

@ -1,5 +1,26 @@
" Basic formatting settings
set listchars=tab:»·,trail
set list
" Turn on line numbering
set number
syntax on
colorscheme monokai
colorscheme monokai
" Enable folding
set foldmethod=indent
set foldlevel=99
" Adds proper PEP-8 settings for Python files
au BufNewFile,BufRead *.py
\ set tabstop=4
\ set softtabstop=4
\ set shiftwidth=4
\ set textwidth=79
\ set expandtab
\ set autoindent
\ set fileformat=unix
au BufNewFile,BufRead *.js, *.html, *.css
\ set tabstop=2
\ set softtabstop=2
\ set shiftwidth=2