update
This commit is contained in:
parent
6854f35211
commit
4f3d7d5aa5
|
@ -1 +1,2 @@
|
||||||
bundle/
|
bundle/
|
||||||
|
autoload/
|
||||||
|
|
6
init.vim
6
init.vim
|
@ -2,10 +2,14 @@ set runtimepath^=~/.config/vim runtimepath+=~/.config/vim/after
|
||||||
let &packpath = &runtimepath
|
let &packpath = &runtimepath
|
||||||
|
|
||||||
if empty(glob('~/.config/nvim/autoload/plug.vim'))"{{{
|
if empty(glob('~/.config/nvim/autoload/plug.vim'))"{{{
|
||||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
|
||||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||||
endif
|
endif
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
source ~/.config/vim/vimrc
|
source ~/.config/vim/vimrc
|
||||||
|
|
||||||
|
" set ruby program to global one. Need to investigate if this will cause
|
||||||
|
" problems if I ever use ruby virtual environments or RVM or similar.
|
||||||
|
let g:ruby_host_prog = '~/.gem/ruby/2.6.0/bin/neovim-ruby-host'
|
||||||
|
|
Loading…
Reference in New Issue