2 files changed,
6 insertions(+),
1 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-03-15 14:49:54 +0200
Parent:
32bde7d
M
config/fish/config.fish
@@ -6,7 +6,7 @@ set -g GOBIN $GOPATH/bin
set -g PATH $HOME/bin $PATH set -g PATH $HOME/.local/bin $PATH -set -g PATH $HOME/go/bin $PATH +set -g PATH $GOBIN $PATH set -g PATH node_modules/.bin $PATH set -g PATH .bin $PATH
A
config/fish/functions/notes.fish
@@ -0,0 +1,5 @@
+function notes + set pattern $argv[1] + + rg -C 3 $pattern $HOME/org/notes +end