dotfiles/fish/conf.d/custom.fish
2024-03-06 20:18:13 -06:00

16 lines
561 B
Fish

if status is-interactive
fish_add_path .cargo/bin/
fish_add_path /opt/clang-format-static
set -x GPG_TTY (tty)
set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket)
set -x EDITOR nvim
set -x DOCKER_HOST unix://$XDG_RUNTIME_DIR/docker.sock
gpgconf --launch gpg-agent
gpg-connect-agent updatestartuptty /bye
# ctrl+backspace (^H in kitty)
# for ctrl+delete: kill-word (unsure about its code in kitty)
bind \cH backward-kill-path-component
set -x NIXPKGS_ALLOW_UNFREE 1
set -x NIXPKGS_ALLOW_INSECURE 1
end