Commit 7d86e04
Changed files (1)
vimrc
@@ -1,13 +1,6 @@
"" Basic Settings {{{{
""
-runtime macros/matchit.vim
-color ir_black
-syntax enable " Turn on syntax highlighting allowing local overrides
-if $TERM == "xterm-256color" || $TERM == "screen-256color" || $COLORTERM == "gnome-terminal"
- set t_Co=256
-endif
-
set nocompatible " Use vim, no vi defaults
set number " Show line numbers
set numberwidth=5
@@ -62,6 +55,13 @@ set ignorecase " searches are case insensitive...
set smartcase " ... unless they contain at least one capital letter
set showmatch " briefly jump to the matching bracket.
+runtime macros/matchit.vim
+color ir_black
+syntax enable " Turn on syntax highlighting allowing local overrides
+if $TERM == "xterm-256color" || $TERM == "screen-256color" || $COLORTERM == "gnome-terminal"
+ set t_Co=256
+endif
+
" }}}}
"" Wild settings {{{{