Compare commits
No commits in common. "76acb9cd90484afc53c7854ed4deadaba6b14b14" and "e4a11a2ffe4a318ed486ef78978d9bb00ee4eeb3" have entirely different histories.
76acb9cd90
...
e4a11a2ffe
@ -1,10 +1,10 @@
|
||||
" minpac
|
||||
function! s:minpac_init() abort
|
||||
packadd minpac | call minpac#init() | source $MYVIMRC
|
||||
endfunction
|
||||
command! PackUpdate call s:minpac_init() | call minpac#update('', {'do': 'call minpac#status()'})
|
||||
command! PackStatus call s:minpac_init() | call minpac#status()
|
||||
command! PackClean call s:minpac_init() | call minpac#clean()
|
||||
command! PackUpdate packadd minpac | source $MYVIMRC |
|
||||
\ call minpac#init() | call minpac#update('', {'do': 'call minpac#status()'})
|
||||
command! PackStatus packadd minpac | source $MYVIMRC |
|
||||
\ call minpac#init() | call minpac#status()
|
||||
command! PackClean packadd minpac | source $MYVIMRC |
|
||||
\ call minpac#init() | call minpac#clean()
|
||||
|
||||
" Sort Python Imports
|
||||
command! ISort call do#isort()
|
||||
|
4
vimrc
4
vimrc
@ -202,11 +202,11 @@ Pack 'jrozner/vim-antlr'
|
||||
Pack 'greymd/oscyank.vim', {'type': 'opt'}
|
||||
let g:use_osc52 = $TMUX !=# '' &&
|
||||
\ trim(system('tmux show-options -g set-clipboard')) ==# 'set-clipboard on'
|
||||
if g:use_osc52 && isdirectory(expand('~/.vim/pack/minpac/opt/oscyank.vim'))
|
||||
if g:use_osc52 && isdirectory('pack/minpac/opt/oscyank.vim')
|
||||
packadd oscyank.vim
|
||||
endif
|
||||
|
||||
" Load YouComplteMe if termdebug plugin is not loaded.
|
||||
if isdirectory(expand('~/.vim/pack/minpac/opt/YouCompleteMe'))
|
||||
if !exists(':Termdebug') && isdirectory('pack/minpac/opt/YouCompleteMe')
|
||||
packadd YouCompleteMe
|
||||
endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user