aboutsummaryrefslogtreecommitdiff
path: root/.config/fish/config.fish
blob: 2af9add37b26a897ccc251b87cfb3bd0b323b9c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if status is-interactive
    # Commands to run in interactive sessions can go here
end

fish_vi_key_bindings

function fish_user_key_bindings
    for mode in insert default visual
        bind -M $mode \cf forward-char
    end
end

alias ha-update='cd $sd; docker compose down homeassistant; docker compose pull homeassistant; docker compose up -d; cd'

direnv hook fish | source