From 7e8ae8133887c895c8d008bdd981729ec6132180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Gr=C3=BCnewald?= <10533763+dhalucario@users.noreply.github.com> Date: Thu, 24 Apr 2025 11:05:57 +0200 Subject: [PATCH] Add vim and move fish_greeting to top --- shell/.config/fish/config.fish | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/shell/.config/fish/config.fish b/shell/.config/fish/config.fish index 3d2492a..54cfde1 100644 --- a/shell/.config/fish/config.fish +++ b/shell/.config/fish/config.fish @@ -1,9 +1,12 @@ fish_add_path ~/.local/bin fish_add_path ~/.cargo/bin -if status is-interactive - # Commands to run in interactive sessions can go here +set -gx EDITOR vim + +function fish_greeting + fastfetch end + # tabtab source for packages # uninstall by removing these lines [ -f ~/.config/tabtab/fish/__tabtab.fish ]; and . ~/.config/tabtab/fish/__tabtab.fish; or true @@ -14,7 +17,3 @@ if not string match -q -- $PNPM_HOME $PATH set -gx PATH "$PNPM_HOME" $PATH end # pnpm end - -function fish_greeting - fastfetch -end