You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
384 B
9 lines
384 B
" Tab specific option
|
|
set tabstop=8 "A tab is 8 spaces
|
|
set expandtab "Always uses spaces instead of tabs
|
|
set softtabstop=4 "Insert 4 spaces when tab is pressed
|
|
set shiftwidth=4 "An indent is 4 spaces
|
|
set shiftround "Round indent to nearest shiftwidth multiple
|
|
|
|
" prettify
|
|
set formatprg=stylish-haskell
|