* Added fish config
This commit is contained in:
parent
384b4e1ec1
commit
50b1cc1612
3 changed files with 20 additions and 0 deletions
12
fish/config.fish
Normal file
12
fish/config.fish
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
function fish_prompt
|
||||||
|
set_color blue
|
||||||
|
echo -n (whoami)
|
||||||
|
set_color cyan
|
||||||
|
echo -n '@'
|
||||||
|
set_color magenta
|
||||||
|
echo -n (prompt_pwd)
|
||||||
|
set_color cyan
|
||||||
|
echo -n '> '
|
||||||
|
end
|
||||||
|
|
||||||
|
set PATH ~/Library/Haskell/bin ~/bin/ /Users/vincent/Source/management-scripts/google-apps/ $PATH
|
5
fish/functions/runhoogle.fish
Normal file
5
fish/functions/runhoogle.fish
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
function runhoogle
|
||||||
|
cd ~/.hoogle
|
||||||
|
screen -dm hoogle server -p 4000
|
||||||
|
cd -
|
||||||
|
end
|
3
fish/functions/runirc.fish
Normal file
3
fish/functions/runirc.fish
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
function runirc
|
||||||
|
screen -S irssi irssi
|
||||||
|
end
|
Loading…
Reference in a new issue