This commit is contained in:
2025-12-23 20:34:05 +01:00
parent 5ad8af0275
commit 878aee5690
4 changed files with 51 additions and 25 deletions
+32 -16
View File
@@ -5,6 +5,9 @@ set -gx EDITOR nvim
set -gx KUBE_EDITOR nvim
set -g TERM xterm-256color
# For enable nvim server, first instance become the listener
#set -gx NVIM_LISTEN_ADDRESS /tmp/nvim-server.sock
# Set correct TERM and TERMINAL for kitty
set -gx TERM xterm-kitty
set -gx TERMINAL kitty
@@ -13,6 +16,12 @@ if status is-interactive
# Commands to run in interactive sessions can go here
fish_vi_key_bindings
# Disable flow control (Ctrl+S/Ctrl+Q) to prevent terminal freeze
# stty -ixon
# Handle spurious cursor position reports that might appear in prompt
# This happens when background jobs query the terminal
# Ctrl-o Find a file.
# Ctrl-r Search through command history.
# Alt-c cd into sub-directories (recursively searched).
@@ -20,24 +29,31 @@ if status is-interactive
# Alt-o Open a file/dir using default editor ($EDITOR)
# Alt-Shift-o Open a file/dir using xdg-open or open command
set -g fish_sequence_key_delay_ms 200
bind -M insert -m default j,k cancel repaint-mode
bind -M insert \cn \\t
set -q KREW_ROOT; and set -gx PATH $PATH $KREW_ROOT/.krew/bin; or set -gx PATH $PATH $HOME/.krew/bin
set -g fish_sequence_key_delay_ms 200
bind -M insert -m default j,k cancel repaint-mode
bind -M insert \cn \\t
set -q KREW_ROOT; and set -gx PATH $PATH $KREW_ROOT/.krew/bin; or set -gx PATH $PATH $HOME/.krew/bin
# Check max tmux window in the Home session and open the Home session in a new tmux window
# Find max window number in the Home session
#if test -z "$TMUX";
# # set name "$(date '+%Y%m%d_%H%M%S')"
# # exec flock -w 1 -F -n "/tmp/zellij-$name" zellij -s "$name"
# exec tmux
#end
# if test -z "$ZELLIJ";
# # set name "$(date '+%Y%m%d_%H%M%S')"
# # exec flock -w 1 -F -n "/tmp/zellij-$name" zellij -s "$name"
# exec zellij
# end
set -U autovenv_enable yes
set -U autovenv_announce no
set -U autovenv_dir .venv
# Check max tmux window in the Home session and open the Home session in a new tmux window
# Find max window number in the Home session
#if test -z "$TMUX";
# # set name "$(date '+%Y%m%d_%H%M%S')"
# # exec flock -w 1 -F -n "/tmp/zellij-$name" zellij -s "$name"
# exec tmux
#end
# if test -z "$ZELLIJ";
# # set name "$(date '+%Y%m%d_%H%M%S')"
# # exec flock -w 1 -F -n "/tmp/zellij-$name" zellij -s "$name"
# exec zellij
# end
end
fish_add_path /home/df/.opencode/bin
# Added by LM Studio CLI (lms)
set -gx PATH $PATH /home/df/.lmstudio/bin
# End of LM Studio CLI section