From d9b1a90f805748940a303cce12ec95c54a8430c0 Mon Sep 17 00:00:00 2001 From: T31M Date: Sat, 22 Feb 2020 22:26:00 +0100 Subject: [PATCH] bugfix: env config --- fish_setup.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/fish_setup.sh b/fish_setup.sh index 2282509..743e3f8 100644 --- a/fish_setup.sh +++ b/fish_setup.sh @@ -1,11 +1,15 @@ #!/bin/bash +set -x + # install nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash # install pyenv git clone https://github.com/pyenv/pyenv.git ~/.pyenv -git clone https://github.com/pyenv/pyenv-virtualenv.git $(pyenv root)/plugins/pyenv-virtualenv + +# install pyenv-virtualenv plugin +git clone https://github.com/pyenv/pyenv-virtualenv.git ~/.pyenv/plugins/pyenv-virtualenv # install fisher curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish @@ -29,10 +33,9 @@ fish -c "fisher self-update" fish -c fisher fish -c "fisher add (pwd)/fish/theme-t31m" -# customize theme / prompt -cp dot.config/fish/functions/* ~/.config/fish/functions - -# set fish default promt +# set fish default shell +echo "changing shell to fish, enter password" chsh -s /usr/bin/fish cp dot.vimrc ~/.vimrc +