diff options
author | Matthew Lemon <y@yulqen.org> | 2025-01-06 09:26:36 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2025-01-06 09:26:36 +0000 |
commit | bf3d847047000d8ee91f6e08c818b251268cd6e2 (patch) | |
tree | a58c640198b6fe8824d707c28432cc2a29c91ca3 | |
parent | b8e8ec16cb28fe78fe7dcfdd1dccbc56ec5b8e8b (diff) |
Fills out the fish config
-rw-r--r-- | fish2025/conf.d/uv.env.fish | 2 | ||||
-rw-r--r-- | fish2025/functions/gloga.fish | 4 | ||||
-rw-r--r-- | fish2025/functions/notes.fish | 4 | ||||
-rw-r--r-- | fish2025/functions/xclip.fish | 4 |
4 files changed, 14 insertions, 0 deletions
diff --git a/fish2025/conf.d/uv.env.fish b/fish2025/conf.d/uv.env.fish new file mode 100644 index 0000000..c5be13c --- /dev/null +++ b/fish2025/conf.d/uv.env.fish @@ -0,0 +1,2 @@ + +source "$HOME/.local/bin/env.fish" diff --git a/fish2025/functions/gloga.fish b/fish2025/functions/gloga.fish new file mode 100644 index 0000000..98da2aa --- /dev/null +++ b/fish2025/functions/gloga.fish @@ -0,0 +1,4 @@ +function gloga --wraps='git log --oneline --decorate --graph --all' --description 'alias gloga=git log --oneline --decorate --graph --all' + git log --oneline --decorate --graph --all $argv + +end diff --git a/fish2025/functions/notes.fish b/fish2025/functions/notes.fish new file mode 100644 index 0000000..d6d7ec7 --- /dev/null +++ b/fish2025/functions/notes.fish @@ -0,0 +1,4 @@ +function notes --wraps='cd ~/Documents/Notes' --description 'alias notes=cd ~/Documents/Notes' + cd ~/Documents/Notes $argv + +end diff --git a/fish2025/functions/xclip.fish b/fish2025/functions/xclip.fish new file mode 100644 index 0000000..b552ec6 --- /dev/null +++ b/fish2025/functions/xclip.fish @@ -0,0 +1,4 @@ +function xclip --description 'alias xclip=xclip -selection c' + command xclip -selection c $argv + +end |