summaryrefslogtreecommitdiffstats
path: root/.config/fish/config.fish
diff options
context:
space:
mode:
Diffstat (limited to '.config/fish/config.fish')
-rw-r--r--.config/fish/config.fish8
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish
index adcbe4a..e5e5ba8 100644
--- a/.config/fish/config.fish
+++ b/.config/fish/config.fish
@@ -31,7 +31,6 @@ if status is-interactive
31 abbr --add --global bc 'bc -l' 31 abbr --add --global bc 'bc -l'
32 abbr --add --global bo 'bukuopener' 32 abbr --add --global bo 'bukuopener'
33 abbr --add --global cp 'cp -i' 33 abbr --add --global cp 'cp -i'
34 abbr --add --global C 'xsel -b' # Copy to clipboard
35 abbr --add --global df 'df -h' 34 abbr --add --global df 'df -h'
36 abbr --add --global free 'free -m' 35 abbr --add --global free 'free -m'
37 abbr --add --global gst 'git status' 36 abbr --add --global gst 'git status'
@@ -60,6 +59,13 @@ if status is-interactive
60 abbr --add --global wim 'nvim /home/yigit/nextcloud/personal_wiki/text/index.wiki' 59 abbr --add --global wim 'nvim /home/yigit/nextcloud/personal_wiki/text/index.wiki'
61 abbr --add --global yst 'yadm status' 60 abbr --add --global yst 'yadm status'
62 abbr --add --global dr 'dragon-drop' 61 abbr --add --global dr 'dragon-drop'
62 abbr --add --global ddg 'surfraw duckduckgo -j'
63
64 if test (sessiontype) = "wayland"
65 abbr --add --global C 'wl-copy' # Wayland
66 else
67 abbr --add --global C 'xsel -b' # X11
68 end
63 69
64 zoxide init fish | source 70 zoxide init fish | source
65 direnv hook fish | source 71 direnv hook fish | source