From 04e7ab88b689c829a261fd793e982b8a65a19aa8 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 25 Jul 2014 23:50:05 -0400 Subject: [PATCH] Load the colorscheme before the config files --- vimrc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vimrc b/vimrc index 55c3d5d..02bbd06 100644 --- a/vimrc +++ b/vimrc @@ -9,8 +9,8 @@ " " "============================================================" -"DARKCLOUD VIM CONFIG FOLDER PATH: {{{ - " If you want to use darkcloud-vimconfig as a package without symlinking +"darkcloud vim config folder path: {{{ + " if you want to use darkcloud-vimconfig as a package without symlinking " the vim folder or placing it @ /etc/darkcloud-vimconfig, create a file " @ ~/.vim/darkcloud-path.vim and in it place the following, except with " the path pointing to the cloned repo: @@ -28,18 +28,18 @@ "Add Config Directory: (distro-agnostic system-wide) let &runtimepath=printf('%s,%s/vim,%s/vim/after',&runtimepath,g:darkcloudpath,g:darkcloudpath) + "Load Colour Scheme: + colorscheme darkcloud + "Load Settings: runtime config/settings.vim - "Load Plugins: + "Init Plugin Loader: runtime bundle/vim-pathogen/autoload/pathogen.vim "Load Keymappings: runtime config/keyboard.vim - "Load Colour Scheme: - colorscheme darkcloud - "Load User Config: runtime vimrc.user