From 4eca2ee06aec6ae4b5ba8b960312c49bcbe8bf2b Mon Sep 17 00:00:00 2001 From: Barak Michener Date: Tue, 9 Jan 2024 13:20:23 -0800 Subject: [PATCH] right prompt to nil, ignore work configs --- .config/fish/.gitignore | 1 + .config/fish/config.fish | 4 ++++ .config/fish/functions/fish_right_prompt.fish | 1 + 3 files changed, 6 insertions(+) create mode 100644 .config/fish/.gitignore create mode 100644 .config/fish/functions/fish_right_prompt.fish diff --git a/.config/fish/.gitignore b/.config/fish/.gitignore new file mode 100644 index 0000000..44e4e55 --- /dev/null +++ b/.config/fish/.gitignore @@ -0,0 +1 @@ +work.fish diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 8160044..0fababc 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -16,6 +16,10 @@ if test -e $HOME/.asdf/asdf.fish . ~/.asdf/asdf.fish end +if test -e $HOME/.config/fish/work.fish + . ~/.config/fish/work.fish +end + . ~/.config/fish/fish_aliases.fish # The next line updates PATH for the Google Cloud SDK. diff --git a/.config/fish/functions/fish_right_prompt.fish b/.config/fish/functions/fish_right_prompt.fish new file mode 100644 index 0000000..25b3eab --- /dev/null +++ b/.config/fish/functions/fish_right_prompt.fish @@ -0,0 +1 @@ +function fish_right_prompt; end