X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vimrc;h=5bc468a4bd3a0c97f77cc16a2d46d406ce03f3c1;hb=f75ab62d9fb3912acc7719bd8a4189f2862f4113;hp=3f94aefb7f20fe2677880a59f7b2eeb17540567b;hpb=cbf6334225a37daa7e89cdd9797358acef12e68d;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 3f94aef..5bc468a 100644 --- a/vimrc +++ b/vimrc @@ -105,6 +105,9 @@ if exists('+cryptmethod') set cryptmethod=blowfish endif +" Create new split windows on the right (and not left). +set splitright + " Clear all vimrc-related autocmds. Has to be done here as the vimrc augroup " is used multiple times. Necessary to support reloading the vimrc. if has('autocmd') @@ -542,6 +545,11 @@ if exists('+spell') nnoremap sn :set nospell nnoremap se :set spell spelllang=en_us nnoremap sd :set spell spelllang=de_de +" If no spell support is available, these mappings do nothing. +else + nmap sn + nmap se + nmap sd endif " Add semicolon to the end of the line. Thanks to @@ -757,11 +765,17 @@ if has('syntax') let g:hs_highlight_boolean = 1 let g:hs_highlight_types = 1 let g:hs_highlight_more_types = 1 + " Java. + let g:java_highlight_java_lang_ids = 1 " color java.lang.* identifiers " Perl. let g:perl_fold = 1 let g:perl_fold_blocks = 1 let g:perl_nofold_packages = 1 let g:perl_include_pod = 1 " syntax coloring for PODs + " PHP. + let g:php_folding = 3 " fold functions + let g:php_short_tags = 0 " no short tags (), not always usable + let g:php_sql_query = 1 " highlight SQL queries in strings " Python. let g:python_highlight_all = 1 " Shell.