repos / dotfiles

my dotfiles

commit
7f7a97b
parent
e89af4a
author
Eric Bower
date
2024-08-26 10:39:13 -0400 EDT
chore: fish cfg
1 files changed,  +13, -1
M dot_config/fish/config.fish
+13, -1
 1@@ -2,6 +2,16 @@ fish_config theme choose "dracula"
 2 
 3 fish_add_path ~/.deno/bin ~/.yarn/bin ~/go/bin ~/.npm-packages/bin ~/bin
 4 
 5+switch (uname)
 6+  case Darwin
 7+    fish_add_path /opt/homebrew/bin
 8+  case Linux
 9+    # do things for Linux
10+  case '*'
11+    # do things for other OSs
12+end
13+
14+set -xg LANG en_US.UTF-8
15 set -xg EDITOR nvim
16 set -xg VISUAL nvim
17 set -xg GPG_TTY (tty)
18@@ -22,4 +32,6 @@ abbr -a bcp rsync -avzu --progress
19 abbr -a weather curl wttr.in/Ann+Arbor+Michigan
20 abbr -a img img2sixel
21 
22-direnv hook fish | source
23+if type -q direnv
24+  direnv hook fish | source
25+end