all repos

dotfiles @ 89a9bce317684d986d52f83836c84100e3f4aa82

my dotfiles
2 files changed, 6 insertions(+), 1 deletions(-)
fish: add function to grep my notes, update PATH
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