From: Simon Ruderich Date: Sun, 22 Mar 2009 17:56:45 +0000 (+0100) Subject: vimrc: Be more compatible with less capable versions. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=363bce2670cc10f255e49f640f5ca1927fe5ba36;p=config%2Fdotfiles.git vimrc: Be more compatible with less capable versions. --- diff --git a/vimrc b/vimrc index b6e1cbb..61a0704 100644 --- a/vimrc +++ b/vimrc @@ -8,7 +8,9 @@ set nocompatible " EDIT SETTINGS " Enable automatic file detection, plugin and indention. -filetype plugin indent on +if has("autocmd") + filetype plugin indent on +endif " Use UTF-8 file encoding for all files. set fileencodings=utf-8 @@ -50,9 +52,11 @@ set virtualedit=block set incsearch " Activate syntax folding. -set foldmethod=syntax -set foldcolumn=2 -set foldlevel=99 " no folding at default +if has("folding") + set foldmethod=syntax + set foldcolumn=2 + set foldlevel=99 " no folding at default +endif " Only check for case if the searched word contains a capital character. set ignorecase @@ -102,8 +106,10 @@ endif " MAPPINGS (except for plugins, see PLUGIN SETTINGS below) " Use "," as my mapleader. -let mapleader = "," -let maplocalleader = "," +if has("eval") + let mapleader = "," + let maplocalleader = "," +endif " Use to move down a page and - to move up one like in mutt. nnoremap @@ -145,7 +151,7 @@ if has("mac") endif " Disable Apple style movements in MacVim. -if has("gui_macvim") +if has("gui_macvim") && has("eval") let macvim_skip_cmd_opt_movement = 1 endif @@ -170,7 +176,9 @@ endif " Settings for the NERD commenter. " Don't create any mappings I don't want to use. -let NERDCreateDefaultMappings = 0 +if has("eval") + let NERDCreateDefaultMappings = 0 +endif " Map toggle comment. map NERDCommenterToggle