"reload with :so %

"quality of life
set nobackup
set noswapfile
set ff=unix
set autochdir

" gVim
if has("gui_running")
    language en_US.utf8
    set guioptions-=T
    set guifont=Ubuntu_Mono:h12:cANSI:qDRAFT
endif

" flavour
set nu
set cursorline
set nobackup
syntax on
set background=dark
colorscheme sorbet

" open in browser
if has("win32")
    command Browser !start "C:\Program Files\Mozilla Firefox\firefox.exe" "file://%:p"
endif

" wrap configuration
set linebreak
set nowrap

" allow deleting whitespace
set backspace=indent,eol,start

" tab to space
set shiftwidth=4 smarttab
set expandtab
