Update windows remote plugin host settings
parent
d10ecfe2f0
commit
462db776c8
|
@ -2,5 +2,10 @@
|
||||||
" - Neovim python host -
|
" - Neovim python host -
|
||||||
" Explicit declaration of python host program to "prevent suprises"
|
" Explicit declaration of python host program to "prevent suprises"
|
||||||
" -----------------------------------------------------------------------------
|
" -----------------------------------------------------------------------------
|
||||||
|
if !has('win32')
|
||||||
let g:python_host_prog = $HOME.'/.asdf/shims/python2'
|
let g:python_host_prog = $HOME.'/.asdf/shims/python2'
|
||||||
let g:python3_host_prog = $HOME.'/.asdf/shims/python3'
|
let g:python3_host_prog = $HOME.'/.asdf/shims/python3'
|
||||||
|
else
|
||||||
|
let g:python_host_prog = $HOME.'/scoop/shims/python2'
|
||||||
|
let g:python3_host_prog = $HOME.'/scoop/shims/python3'
|
||||||
|
endif
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
" -----------------------------------------------------------------------------
|
" -----------------------------------------------------------------------------
|
||||||
" - Neovim ruby host -
|
" - Neovim ruby host -
|
||||||
" -----------------------------------------------------------------------------
|
" -----------------------------------------------------------------------------
|
||||||
|
if !has('win32')
|
||||||
let g:ruby_host_prog = '~/.asdf/shims/ruby'
|
let g:ruby_host_prog = '~/.asdf/shims/ruby'
|
||||||
|
else
|
||||||
|
let g:ruby_host_prog = '~/scoop/shims/ruby'
|
||||||
|
endif
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
" -----------------------------------------------------------------------------
|
|
||||||
" - Neovim python host -
|
|
||||||
" Explicit declaration of python host program to "prevent suprises"
|
|
||||||
"
|
|
||||||
" NEOVIM ONLY!
|
|
||||||
" -----------------------------------------------------------------------------
|
|
||||||
if has('nvim')
|
|
||||||
let g:python_host_prog = $HOME.'/.asdf/shims/python2'
|
|
||||||
let g:python3_host_prog = $HOME.'/.asdf/shims/python3'
|
|
||||||
endif
|
|
|
@ -1,8 +0,0 @@
|
||||||
" -----------------------------------------------------------------------------
|
|
||||||
" - Neovim ruby host -
|
|
||||||
"
|
|
||||||
" NEOVIM ONLY!
|
|
||||||
" -----------------------------------------------------------------------------
|
|
||||||
if has('nvim')
|
|
||||||
let g:ruby_host_prog = '~/.asdf/shims/ruby'
|
|
||||||
endif
|
|
|
@ -12,6 +12,7 @@ mklink %UserProfile%\_vimrc %~dp0..\symlinks\vimrc
|
||||||
mklink /D %UserProfile%\vimfiles %~dp0..\symlinks\vim
|
mklink /D %UserProfile%\vimfiles %~dp0..\symlinks\vim
|
||||||
mklink %UserProfile%\.gitconfig %~dp0..\symlinks\gitconfig
|
mklink %UserProfile%\.gitconfig %~dp0..\symlinks\gitconfig
|
||||||
mklink %UserProfile%\.gitignore %~dp0..\symlinks\gitignore
|
mklink %UserProfile%\.gitignore %~dp0..\symlinks\gitignore
|
||||||
|
mklink /D %UserProfile%\AppData\Local\nvim %~dp0..\symlinks\config\nvim
|
||||||
|
|
||||||
REM Then set up vim plug
|
REM Then set up vim plug
|
||||||
Powershell.exe -executionpolicy remotesigned -File %~dp0install_vim_plug_windows.ps1
|
Powershell.exe -executionpolicy remotesigned -File %~dp0install_vim_plug_windows.ps1
|
||||||
|
|
Loading…
Reference in New Issue