]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Remove unnecessary has('eval').
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 92946926b425c70308aa2105be2cb36221a56c28..e64570638a37f13a70f974ad47e7a5d436236cf9 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -321,7 +321,7 @@ if has('mac') || filereadable('/Users/.localized')
 endif
 
 " Disable Apple style movements in MacVim.
-if has('gui_macvim') && has('eval')
+if has('gui_macvim')
     let g:macvim_skip_cmd_opt_movement = 1
 endif
 
@@ -376,12 +376,16 @@ if has('syntax')
 
 " Settings for specific filetypes.
 
+    " Haskell.
+    let g:hs_highlight_boolean = 1
+    let g:hs_highlight_types = 1
+    let g:hs_highlight_more_types = 1
+
     " 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
-
 endif
 
 
@@ -390,7 +394,7 @@ endif
 " Use pathogen which allows one 'runtimepath' entry per plugin. This makes
 " installing/removing/updating plugins simple. (Used for plugins with more
 " than one file.)
-if has('eval') && v:version >= 700
+if v:version >= 700
     execute 'call pathogen#runtime_append_all_bundles()'
 endif