Remove sandboxd, load python/ruby with no-rehash, faster, and works with vim

main
Steffen Rademacker 3 years ago
parent 5505f7028b
commit 63ab9bc77e

@ -28,7 +28,6 @@ mkdir ~/.config
ln -s ~/dotfiles/editorconfig ~/.editorconfig
ln -s ~/dotfiles/gitconfig ~/.gitconfig
ln -s ~/dotfiles/gitignore ~/.gitignore
ln -s ~/dotfiles/sandboxrc ~/.sandboxrc
ln -s ~/dotfiles/zsh ~/.zsh
ln -s ~/dotfiles/zsh/zshrc ~/.zshrc

@ -2,8 +2,8 @@
# ruby
brew install rbenv # restart terminal, then:
RUBY_CONFIGURE_OPTS="--with-openssl-dir=/usr/local/opt/openssl" rbenv install 3.0.0
rbenv global 3.0.0
RUBY_CONFIGURE_OPTS="--with-openssl-dir=/usr/local/opt/openssl" rbenv install 3.0.1
rbenv global 3.0.1
# node
curl -L https://git.io/n-install | bash
@ -17,6 +17,6 @@ npm update -g
# first: find out the current python3 version in homebrew
# then install this version with pyenv and link it
brew install pyenv # restart terminal, then:
pyenv install 3.9.2
pyenv global 3.9.2
pyenv install 3.9.4
pyenv global 3.9.4
pip install --upgrade pip

@ -40,3 +40,8 @@ set termguicolors
let g:gruvbox_italic=1
colorscheme gruvbox
language en_US.UTF-8
" deactivate some unneeded language providers
let g:loaded_python_provider = 0
let g:loaded_perl_provider = 0

@ -1,10 +0,0 @@
sandbox_init_pyenv() {
eval "$(pyenv init -)"
}
sandbox_init_rbenv() {
eval "$(rbenv init -)"
}
sandbox_hook_shims pyenv
sandbox_hook_shims rbenv

@ -18,7 +18,6 @@ source ~/dotfiles/zsh/functions
# plugins
zinit wait lucid for \
light-mode benvan/sandboxd \
light-mode zsh-users/zsh-autosuggestions \
light-mode zsh-users/zsh-completions \
light-mode zdharma/fast-syntax-highlighting \
@ -37,3 +36,5 @@ bindkey '^Z' fancy-ctrl-z
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
eval "$(starship init zsh)"
eval "$(jump shell)"
eval "$(pyenv init - --no-rehash)"
eval "$(rbenv init - --no-rehash)"

Loading…
Cancel
Save