Add eza + fzf packages and zsh func

This commit is contained in:
xbazzi 2025-02-09 20:54:00 -07:00
parent 83859e4027
commit b0f4260a30
2 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,7 @@
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom3/"
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom4/"
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom5/"
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom6/"
];
};
@ -50,6 +51,11 @@
command = "firefox";
name = "open-firefox";
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom5" = {
binding = "<Super>y+e";
command = "kitty --start-as=normal -- bash -ic 'repo'";
name = "open-repos";
};
"org/gnome/shell" = {
disable-user-extensions = false; # enables user extensions

View File

@ -18,6 +18,11 @@
fi
rm -f -- "$tmp"
}
function proj() {
lsn -ld ~/repos/* --color=never | \
awk '{print $7}' | \
fzf --reverse | xargs -I{} code {} -n && exit
}
'';
history.size = 10000;
history.ignoreAllDups = true;