Vimrc

This is my vimrc. I split it up in sections. I have a mapping <Leader>vrc that opens vimrc for editing. There I can C-w f to open any section. I also have <Leader>vso for re-sourcing vimrc (I could maybe have that as autocommand on filechange).

so ~/.vim/vimrc_main
so ~/.vim/vimrc_folds
so ~/.vim/vimrc_mappings
so ~/.vim/vimrc_plugins

" filetype specific settings
so ~/.vim/vimrc_filetype

" use Ctrl-w f to open file under cursor in split window

I had some problems with filetype plugin on and setting wrap and spell globally.. but nowrap and nospell locally on filetype.

I removed filetype plugin on and use this as my vimrc_filetype:

augroup ruby
    autocmd!
    autocmd FileType ruby call Ruby()
augroup END

function! Ruby()
    setlocal nowrap nospell
endfunction

Seems to work.