this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+5 -7
+5 -7
modules/fish.nix
··· 62 62 63 63 set -g fish_greeting 64 64 65 - function e --wraps nvim --description 'Run $EDITOR' 66 - set -l cmd (string split ' ' $EDITOR) 67 - eval $cmd[1] $cmd[2..] $argv 68 - end 69 - 70 65 ulimit -n 10480 71 66 ''; 72 67 ··· 78 73 79 74 set -gx SSH_AUTH_SOCK ~/.local/share/1password/auth.sock 80 75 76 + function e --wraps nvim --description 'Run $EDITOR' 77 + set -l cmd (string split ' ' $EDITOR) 78 + eval $cmd[1] $cmd[2..] $argv 79 + end 80 + 81 81 source (${pkgs.lima}/bin/limactl completion fish | psub) 82 82 source $HOME/.op/plugins.sh 83 83 84 84 if which op > /dev/null; source (op completion fish | psub); end 85 - 86 - test -e $HOME/.iterm2_shell_integration.fish ; and source $HOME/.iterm2_shell_integration.fish 87 85 ''; 88 86 }; 89 87 }