From f0eba843625fb32030cb22f402dd7e431394c05c Mon Sep 17 00:00:00 2001 From: John Doty Date: Wed, 26 Oct 2022 06:41:28 -0700 Subject: [PATCH] Fish stuff --- install.sh | 7 ++----- setup.fish | 2 ++ 2 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 setup.fish diff --git a/install.sh b/install.sh index 087801d..4b22462 100755 --- a/install.sh +++ b/install.sh @@ -21,11 +21,8 @@ sudo apt install -y wget fish java-common atop # Change my shell to fish. sudo chsh -s /usr/bin/fish $USER -# Install fisher -curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher - -# nvm.fish -fisher install jorgebucaran/nvm.fish +# Install fish related stuff +/usr/bin/fish "./setup.fish" # Make sure that the gitconfig that's on my computer links to my shared # config. diff --git a/setup.fish b/setup.fish new file mode 100644 index 0000000..0b59ad3 --- /dev/null +++ b/setup.fish @@ -0,0 +1,2 @@ +curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher +fisher install jorgebucaran/nvm.fish \ No newline at end of file