feat: updates fish_setup, README.md
This commit is contained in:
@ -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
|
||||||
|
|||||||
13
fish/theme-t31m/fish_greeting.fish
Normal file
13
fish/theme-t31m/fish_greeting.fish
Normal 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
|
||||||
@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user