all repos

dotfiles @ 9bc8269

my dotfiles

config/fish/config.fish (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
set -gx EDITOR nvim
set -gx VISUAL nvim

set -g GOPATH $HOME/go

set -g PATH $HOME/bin $PATH
set -g PATH $HOME/go/bin $PATH
set -g PATH $HOME/.local/bin $PATH
set -g PATH $HOME/.bun/bin $PATH
set -g PATH $HOME/.cargo/bin $PATH
set -g PATH node_modules/.bin $PATH
set -g PATH .bin $PATH

if status is-interactive
  set fish_greeting
  starship init fish | source
  zoxide init fish | source
  mise activate fish | source

  function fish_user_key_bindings
    fish_vi_key_bindings
    bind -M insert -m default jk backward-char force-repaint
  end
end