Load local vim plugins from non git file

This commit is contained in:
Kenneth Benzie 2016-07-22 12:31:01 +01:00
parent b4ef88d28c
commit edce545a0e

11
vimrc
View File

@ -42,7 +42,7 @@ Plug 'vim-scripts/vimomni', {'for': ['vim']}
" }}} " }}}
" format {{{ " format {{{
" format.vim - format with text objects " format.vim - format with text objects
if isdirectory('~/Sandbox/format') if isdirectory(expand('~/Sandbox/format'))
Plug '~/Sandbox/format' Plug '~/Sandbox/format'
else else
Plug 'git@bitbucket.org:infektor/format.vim.git' Plug 'git@bitbucket.org:infektor/format.vim.git'
@ -190,10 +190,9 @@ Plug 'beyondmarc/hlsl.vim'
" OpenCL C syntax " OpenCL C syntax
Plug 'frasercrmck/opencl.vim' Plug 'frasercrmck/opencl.vim'
" }}} " }}}
" local {{{ " local plugins {{{
" spir-vim if filereadable(expand('~/.local_plugins.vim'))
Plug '~/spir-vim' source ~/.local_plugins.vim
" jira.vim endif
Plug '~/jira.vim'
" }}} " }}}
call plug#end() call plug#end()