" use xdg
set runtimepath=$XDG_CONFIG_HOME/vim,$VIMRUNTIME,$XDG_CONFIG_HOME/vim/after
+" bundles {{{1
filetype off
set rtp+=$XDG_DATA_HOME/vim/vundle
call vundle#rc('$XDG_DATA_HOME/vim')
set background=dark " Dark background, d'uh!
syntax on
-set spelllang=en,de,fr " list of accepted languages
+set spelllang=en_gb " list of accepted languages
set dictionary=spell " list of dictionary files for keyword completion
" toggle spell-checking
map <silent><F10> :set nospell!<CR>:set nospell?<CR>
" folding {{{1
set foldmethod=marker " folding type
-set foldlevelstart=99 " value for 'foldlevel' when starting to edit a file
+set foldlevelstart=0 " value for 'foldlevel' when starting to edit a file
" space will toggle current fold in normal mode
nnoremap <silent> <Space> @=(foldlevel('.')?'za':"\<Space>")<CR>