about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-07-01T00·32+0200
committerVincent Ambo <vincent@spotify.com>2013-07-01T00·32+0200
commit22618246cbb4a360e85ddc8c147125b1a3eaafc6 (patch)
tree268b69274ef9d6d0b237d7e17921192d653bab34
parentee76e971ceb0bb700ab7701fb3d63590f025ba06 (diff)
parentca9a059b8878111a75b45f2980d8f79367382952 (diff)
Merge branch 'master' of https://github.com/tazjin/dotfiles
-rw-r--r--fish/config.fish14
-rw-r--r--fish/functions/runhoogle.fish5
-rw-r--r--fish/functions/runirc.fish3
3 files changed, 22 insertions, 0 deletions
diff --git a/fish/config.fish b/fish/config.fish
new file mode 100644
index 000000000000..a55a063688c8
--- /dev/null
+++ b/fish/config.fish
@@ -0,0 +1,14 @@
+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 fish_greeting ""
+
+set PATH ~/Library/Haskell/bin ~/bin/ /Users/vincent/Source/management-scripts/google-apps/ $PATH
diff --git a/fish/functions/runhoogle.fish b/fish/functions/runhoogle.fish
new file mode 100644
index 000000000000..45160062e3fb
--- /dev/null
+++ b/fish/functions/runhoogle.fish
@@ -0,0 +1,5 @@
+function runhoogle
+    cd ~/.hoogle
+    screen -dm hoogle server -p 4000
+    cd -
+end
diff --git a/fish/functions/runirc.fish b/fish/functions/runirc.fish
new file mode 100644
index 000000000000..d16234268388
--- /dev/null
+++ b/fish/functions/runirc.fish
@@ -0,0 +1,3 @@
+function runirc
+    screen -S irssi irssi
+end