this repo has no description

fix: remove iTerm2 integrations and move e function to interactive shell

hauleth.dev b812db58 cc5a9268

verified
Changed files
+5 -7
modules
+5 -7
modules/fish.nix
···
set -g fish_greeting
-
function e --wraps nvim --description 'Run $EDITOR'
-
set -l cmd (string split ' ' $EDITOR)
-
eval $cmd[1] $cmd[2..] $argv
-
end
-
ulimit -n 10480
'';
···
set -gx SSH_AUTH_SOCK ~/.local/share/1password/auth.sock
+
function e --wraps nvim --description 'Run $EDITOR'
+
set -l cmd (string split ' ' $EDITOR)
+
eval $cmd[1] $cmd[2..] $argv
+
end
+
source (${pkgs.lima}/bin/limactl completion fish | psub)
source $HOME/.op/plugins.sh
if which op > /dev/null; source (op completion fish | psub); end
-
-
test -e $HOME/.iterm2_shell_integration.fish ; and source $HOME/.iterm2_shell_integration.fish
'';
};
}