diff options
author | joe <rbo@gmx.us> | 2025-09-01 14:45:01 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-01 14:45:01 +0200 |
commit | 2abe5237e8d2e64bd77f9a10e5863a4aed9352fd (patch) | |
tree | 6c01145f11e93dd2d3b8d3a7fafdb1cf7674f15f /.config | |
parent | up (diff) | |
download | dotfiles-bsd-2abe5237e8d2e64bd77f9a10e5863a4aed9352fd.tar.gz dotfiles-bsd-2abe5237e8d2e64bd77f9a10e5863a4aed9352fd.tar.bz2 dotfiles-bsd-2abe5237e8d2e64bd77f9a10e5863a4aed9352fd.tar.xz dotfiles-bsd-2abe5237e8d2e64bd77f9a10e5863a4aed9352fd.tar.zst dotfiles-bsd-2abe5237e8d2e64bd77f9a10e5863a4aed9352fd.zip |
up
Diffstat (limited to '.config')
-rw-r--r-- | .config/zsh/alias.zsh | 18 | ||||
-rw-r--r-- | .config/zsh/plugins.zsh | 3 |
2 files changed, 2 insertions, 19 deletions
diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 4b01038..63b8be9 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -158,24 +158,6 @@ de() { $VISUAL $sc cd $p } -eebin() { - file=$(find "$HOME"/.local/bin -type f | fzf) - [ $? -ne 0 ] && return - bsdsetsid emacsclient -c "$file" - kill -9 "$(ps -p $$ -oppid=)" -} -eeconf() { - file=$(find "$HOME"/.config -type f | fzf) - [ $? -ne 0 ] && return - bsdsetsid emacsclient -c "$file" - kill -9 "$(ps -p $$ -oppid=)" -} -ee() { - file=$(find . -type f | fzf) - [ $? -ne 0 ] && return - bsdsetsid emacsclient -c "$file" - kill -9 "$(ps -p $$ -oppid=)" -} pa() { if [ -d $HOME/.local/packs ] && cd $HOME/.local/packs || return 1 dir=$(\ls $HOME/.local/packs | fzf) diff --git a/.config/zsh/plugins.zsh b/.config/zsh/plugins.zsh index 9e13701..a6281cb 100644 --- a/.config/zsh/plugins.zsh +++ b/.config/zsh/plugins.zsh @@ -13,4 +13,5 @@ source $HOME/.local/packs/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh >/dev/null source $HOME/.local/packs/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh >/dev/null -[[ -r "/usr/share/z/z.sh" ]] && source /usr/share/z/z.sh +/home/r_bousset/.local/packs/fzf-zsh-plugin/fzf-zsh-plugin.plugin.zsh +# [[ -r "/usr/share/z/z.sh" ]] && source /usr/share/z/z.sh |