Add zsh custom plugins
This commit is contained in:
parent
7e37870ce6
commit
d198b662b0
@ -35,7 +35,8 @@ alacritty = "~/.config/alacritty"
|
||||
starship = "~/.config/"
|
||||
|
||||
[zsh.files]
|
||||
zsh = "~/"
|
||||
"zsh/.zshrc" = "~/.zshrc"
|
||||
"zsh/custom-plugins" = "~/.oh-my-zsh/custom"
|
||||
|
||||
[polybar.files]
|
||||
polybar = "~/.config/polybar"
|
||||
|
17
zsh/custom-plugins/last-working-dir.zsh
Normal file
17
zsh/custom-plugins/last-working-dir.zsh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/usr/bin/zsh
|
||||
#
|
||||
# My version of the last-working-dir plugin (https://github.com/ohmyzsh/ohmyzsh/blob/master/plugins/last-working-dir/last-working-dir.plugin.zsh)
|
||||
#
|
||||
# Updates the last directory once directory is changed
|
||||
autoload -U add-zsh-hook
|
||||
add-zsh-hook chpwd chpwd_last_working_dir
|
||||
chpwd_last_working_dir() {
|
||||
# Don't run in subshells
|
||||
[[ "$ZSH_SUBSHELL" -eq 0 ]] || return 0
|
||||
pwd > ~/.last-working-dir
|
||||
}
|
||||
|
||||
# Changes directory to the last working directory
|
||||
lwd() {
|
||||
[[ -r ~/.last-working-dir ]] && cd $(cat ~/.last-working-dir)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user