summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2023-01-02 18:38:47 +0200
committerSyndamia <kamen@syndamia.com>2023-01-02 18:38:47 +0200
commit77bd44842e79a4c8f06add6917cdec4ebd6ee5eb (patch)
tree64aeafd481bf7b885a547f6aeb9f7de96d645eae /.zshrc
parentd464e7352cfc1078e7bef77c07777a54a0148c83 (diff)
downloaddotfiles-77bd44842e79a4c8f06add6917cdec4ebd6ee5eb.tar
dotfiles-77bd44842e79a4c8f06add6917cdec4ebd6ee5eb.tar.gz
dotfiles-77bd44842e79a4c8f06add6917cdec4ebd6ee5eb.zip
[plumb] Implemented initial setup for plumb
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc10
1 files changed, 10 insertions, 0 deletions
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 &