mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
feat: add atuin and nom, adjust configs
This commit is contained in:
parent
2186255b7e
commit
3ea99dd18a
15 changed files with 113 additions and 91 deletions
15
home/programs/fish/configs/99_interactive.fish
Normal file
15
home/programs/fish/configs/99_interactive.fish
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
if status is-interactive
|
||||
nix-your-shell fish | source
|
||||
|
||||
set -l iterm2_shell_integration "$HOME/.iterm2_shell_integration.fish"
|
||||
|
||||
string match -q "$TERM_PROGRAM" "iTerm.app"
|
||||
and test -f "$iterm2_shell_integration"
|
||||
and source "$iterm2_shell_integration"
|
||||
|
||||
set -l ghostty_shell_integration "/Applications/Ghostty.app/Contents/Resources/ghostty/shell-integration/fish/vendor_conf.d/ghostty-shell-integration.fish"
|
||||
|
||||
string match -q "$TERM_PROGRAM" ghostty
|
||||
and test -f "$ghostty_shell_integration"
|
||||
and source "$ghostty_shell_integration"
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue