feat: updates fish_setup, README.md

This commit is contained in:
=
2020-02-23 17:05:20 +01:00
parent ccb862b0d8
commit 910843b71a
3 changed files with 24 additions and 3 deletions

View File

@ -10,4 +10,7 @@ T31M Dotfiles Repository
### Contents ### ### Contents ###
* FiSH Shell Setup & Configuration * FiSH Shell Setup & Configuration
* Based heavily on: omf/theme-sushi check it out * Theme/Prompt Based heavily on: omf/theme-sushi check it out
* NVM + NVM FiSH support
* edc/bass
* fzf

View File

@ -0,0 +1,13 @@
set -g CMD_DURATION 0
function dim
set_color -o 4f4f4f
end
function off
set_color -o normal
end
function fish_greeting
echo "Welcome to FiSH "(dim)(uname -nrs)(off)
end

View File

@ -11,6 +11,10 @@ git clone https://github.com/pyenv/pyenv.git ~/.pyenv
# install pyenv-virtualenv plugin # install pyenv-virtualenv plugin
git clone https://github.com/pyenv/pyenv-virtualenv.git ~/.pyenv/plugins/pyenv-virtualenv git clone https://github.com/pyenv/pyenv-virtualenv.git ~/.pyenv/plugins/pyenv-virtualenv
# install fzf from source
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
bash ~/.fzf/install --no-update-rc --completion --key-bindings
# install fisher # install fisher
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
@ -34,8 +38,9 @@ fish -c fisher
fish -c "fisher add (pwd)/fish/theme-t31m" fish -c "fisher add (pwd)/fish/theme-t31m"
# set fish default shell # set fish default shell
echo "changing shell to fish, enter password" echo "Change your default Shell to FiSH: chsh -s /usr/bin/fish"
chsh -s /usr/bin/fish
# cp vimrc
echo "Installing .vimrc"
cp dot.vimrc ~/.vimrc cp dot.vimrc ~/.vimrc