Rename modules/home to modules/home-manager

This commit is contained in:
2025-04-22 21:19:29 +02:00
parent 3f0b46f3d8
commit 2e20534bba
92 changed files with 0 additions and 28 deletions

View File

@ -0,0 +1,17 @@
#!/usr/bin/env zsh
# Use Alt+Up to go one directory upwards
function go_dir_up() {
cd .. || return 1
}
function zle_go_dir_up() {
zle .kill-buffer
go_dir_up
zle .accept-line
}
zle -N zle_go_dir_up
# Alt+Up
bindkey "^[[1;3A" zle_go_dir_up