mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
Add misc.zsh
This commit is contained in:
parent
5327c11dc9
commit
d8e718c1d4
|
@ -13,6 +13,7 @@ in
|
|||
|
||||
${readFile ./rc/aliases.zsh}
|
||||
${readFile ./rc/functions.zsh}
|
||||
${readFile ./rc/misc.zsh}
|
||||
'';
|
||||
|
||||
completionInit = ''
|
||||
|
|
7
home/programs/terminal/shell/zsh/rc/misc.zsh
Normal file
7
home/programs/terminal/shell/zsh/rc/misc.zsh
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Foot terminal uses this sequence to identify a command execution
|
||||
# that way it's possible to use ctrl+shift+z/x to jump between commands
|
||||
if [ "$TERM" = "foot" ]; then
|
||||
precmd() {
|
||||
print -Pn "\e]133;A\e\\"
|
||||
}
|
||||
fi
|
Loading…
Reference in a new issue