From af2f4f6bfc4f856ce81d65a90e9a459193c845fc Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Sun, 28 Jun 2026 02:36:42 -0400 Subject: [PATCH] add config.fish --- config.fish | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config.fish diff --git a/config.fish b/config.fish new file mode 100644 index 0000000..576892e --- /dev/null +++ b/config.fish @@ -0,0 +1,14 @@ +if status is-interactive + # Commands to run in interactive sessions can go here +end +alias log='git log --graph --decorate --all' +alias ll='ls -la' +alias up='sudo apt-get -y update && sudo apt-get -y dist-upgrade && sudo apt-get -y autoremove' +alias python="python3" +alias vim="nvim" + +# create a prefix that runs a line as bash +function b + bash -c "$argv" +end +