Summary Files CommitsBranches @commit@diff
path: root/.zshrc
diff options
context:
space:
mode:
Commit77bd44842e79a4c8f06add6917cdec4ebd6ee5eb (patch )
AuthorSyndamia <kamen@syndamia.com>2023-01-02 18:38:47 +0200
CommitterSyndamia <kamen@syndamia.com>2023-01-02 18:38:47 +0200
Files64aeafd481bf7b885a547f6aeb9f7de96d645eae /.zshrc
dotfiles-77bd44842e79a4c8f06add6917cdec4ebd6ee5eb.tar
dotfiles-77bd44842e79a4c8f06add6917cdec4ebd6ee5eb.tar.gz
dotfiles-77bd44842e79a4c8f06add6917cdec4ebd6ee5eb.zip
Parentd464e7352cfc1078e7bef77c07777a54a0148c83 (diff)
[plumb] Implemented initial setup for plumb
1 files changed, 10 insertions, 0 deletions
-rw-r--r--.zshrc10
diff --git a/.zshrc b/.zshrc
index 4ee9a08..5fcff79 100644
--- a/.zshrc
+++ b/.zshrc
@@ -126,6 +126,16 @@ device='desktop' # can be either "desktop" (default when empty), "server" or "an
alias cds="cdrepo source"
# }}}
+ # plumb.sh {{{
+
+ plumb-store-cwd () {
+ pwd > /tmp/plumb-cwd
+ }
+ zle -N plumb-store-cwd
+ bindkey "^[[5;7~" plumb-store-cwd
+
+ # }}}
+
# Run in the background
bgr () {
nohup sh -c "$@" 2>&1 &