FRIENDSHIP ENDED WITH ZSH NOW FISH IS BEST FRIEND

master
an 2019-06-10 22:16:40 -04:00
parent 67153e65bc
commit 16d9c9b519
4 changed files with 22 additions and 2 deletions

2
files
View File

@ -11,7 +11,7 @@ network/sharenix.json ~/.sharenix.json
scripts ~/src/scripts/*
scripts/bookmark_get.ps1 /mnt/d/w2/Output/_dlscr/bookmark_get.ps1
terminal/kitty.conf ~/.config/kitty/kitty.conf
terminal/zshrc ~/.zshrc
terminal/fish ~/.config/fish/config.fish
themes ~/.slade3/text_styles/*
themes/ripcord.json ~/.local/share/Ripcord/custom_theme.json
vim/vimrc ~/.vimrc

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
export PATH=$HOME/.local/bin:$PATH
export PATH=$HOME/.local/bin:$HOME/.gem/ruby/2.6.0/bin:$PATH
export DOOMWADDIR=/mnt/d/Stuff/GamesPC/IWads

20
terminal/fish Normal file
View File

@ -0,0 +1,20 @@
if status is-interactive
and not status is-login
and test -z "$TMUX"
exec tmux new-session
end
function fish_prompt
set_color purple
echo (hostname)"% "
end
function fish_greeting
echo "Word of the moment: "(shuf -n1 /usr/share/dict/words) |
awk -f ~/src/scripts/mid.awk col=$COLUMNS
end
alias rebuild $HOME/src/scripts/rebuild.sh
## EOF