all repos

dotfiles @ f81d02c

i use rach linux btw
2 files changed, 1 insertions(+), 8 deletions(-)
fish: deduplicate $PATH; update todo.txt startup command; remove notes function
Author: Olexandr Smirnov olexsmir@gmail.com
Committed at: 2025-07-13 13:23:19 +0300
Parent: 152c5ba
M config/fish/config.fish
···
                7
                7
                 set -g PATH $GOBIN $PATH

              
                8
                8
                 set -g PATH $HOME/bin $PATH

              
                9
                9
                 set -g PATH $HOME/.local/bin $PATH

              
                10
                
                -set -g PATH $GOBIN $PATH

              
                11
                10
                 set -g PATH node_modules/.bin $PATH

              
                12
                11
                 set -g PATH .bin $PATH

              
                13
                12
                 

              ···
                19
                18
                 

              
                20
                19
                   function fish_greeting

              
                21
                20
                     if type -q todo.sh

              
                22
                
                -      todo.sh

              
                
                21
                +      todo.sh listpri a

              
                23
                22
                     end

              
                24
                23
                   end

              
                25
                24
                 

              
                26
                25
                   function fish_user_key_bindings

              
                27
                26
                     fish_vi_key_bindings

              
                28
                
                -    bind -M insert -m default jk backward-char force-repaint

              
                29
                27
                   end

              
                30
                28
                 end

              
D config/fish/functions/notes.fish
···
                1
                
                -function notes

              
                2
                
                -  set pattern $argv[1]

              
                3
                
                -

              
                4
                
                -  rg -C 3 $pattern $HOME/org/notes

              
                5
                
                -end