X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=61a07040859e69570e18317fbebad844f193040b;hb=363bce2670cc10f255e49f640f5ca1927fe5ba36;hp=b6e1cbb3537c58af7bd9d58e5f8f0643ce756da7;hpb=5ed3e6040ece53a2132ebec1dcfe2d7df0356ad1;p=config%2Fdotfiles.git 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