From e03d8209e2821d3aa113364f66073c3bbfabeb67 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Sun, 11 Mar 2018 23:37:17 -0400 Subject: [PATCH] Clean up formatting in the vimrc and vimpagerrc --- vimpagerrc | 7 +++---- vimrc | 8 ++++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/vimpagerrc b/vimpagerrc index d4507fb..36093c7 100644 --- a/vimpagerrc +++ b/vimpagerrc @@ -15,19 +15,18 @@ " @ ~/.vim/darkcloud-path.vim and in it place the following, except with " the path pointing to the cloned repo: " - " let g:darkcloudpath="/etc/darkcloud-vimconfig" + " let g:darkcloudpath = "/etc/darkcloud-vimconfig" if filereadable(glob("~/.vim/darkcloud-path.vim")) source ~/.vim/darkcloud-path.vim else - let g:darkcloudpath="/etc/darkcloud-vimconfig" + let g:darkcloudpath = "/etc/darkcloud-vimconfig" endif "}}} - "DARKCLOUD CONFIG AND THEME FILES FOR VIMPAGER: {{{ "Add Config Directory: (distro-agnostic system-wide) - let &runtimepath=printf('%s,%s/vim,%s/vim/after',&runtimepath,g:darkcloudpath,g:darkcloudpath) + let &runtimepath = printf('%s,%s/vim,%s/vim/after',&runtimepath,g:darkcloudpath,g:darkcloudpath) "Load Colour Scheme: colorscheme default " hack to fix vimrc colorschemes in some versions of vim diff --git a/vimrc b/vimrc index 427dde0..0f6e91a 100644 --- a/vimrc +++ b/vimrc @@ -15,18 +15,18 @@ " @ ~/.vim/darkcloud-path.vim and in it place the following, except with " the path pointing to the cloned repo: " - " let g:darkcloudpath="/etc/darkcloud-vimconfig" + " let g:darkcloudpath = "/etc/darkcloud-vimconfig" if filereadable(glob("~/.vim/darkcloud-path.vim")) source ~/.vim/darkcloud-path.vim else - let g:darkcloudpath="/etc/darkcloud-vimconfig" + let g:darkcloudpath = "/etc/darkcloud-vimconfig" endif "}}} "LOAD DARKCLOUD CONFIG AND THEME FILES: {{{ "Add Config Directory: (distro-agnostic system-wide) - let &runtimepath=printf('%s,%s/vim,%s/vim/after',&runtimepath,g:darkcloudpath,g:darkcloudpath) + let &runtimepath = printf('%s,%s/vim,%s/vim/after',&runtimepath,g:darkcloudpath,g:darkcloudpath) "Load Colour Scheme: colorscheme default " hack to fix vimrc colorschemes in some versions of vim @@ -36,7 +36,7 @@ runtime config/settings.vim "Init Plugin Loader: - let pathogen_disabled=[] + let pathogen_disabled = [] if !has('python') call add(pathogen_disabled, 'gundo.vim')