summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-06-13 16:10:53 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-06-13 16:10:53 +0300
commit6cf03557358c586fbe1a5db0c6614c386a3f4763 (patch)
tree0528c422032c59d4fe7f57bf39d423c106d68b52 /.zshrc
parent7613b136fa621d541a2c17e6ad0f4069ae6dde6b (diff)
downloaddotfiles-6cf03557358c586fbe1a5db0c6614c386a3f4763.tar
dotfiles-6cf03557358c586fbe1a5db0c6614c386a3f4763.tar.gz
dotfiles-6cf03557358c586fbe1a5db0c6614c386a3f4763.zip
Added a zsh function for running apps in the background
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
index 29b4fc3..d4d2007 100644
--- a/.zshrc
+++ b/.zshrc
@@ -307,4 +307,13 @@ alias cdg="cd ~/Programming/GitHub-repos/"
alias cdl="cd ~/Programming/GitLab-repos/"
alias cds="cd ~/Programming/source/"
+# ------------------------------------------------------------------------------
+# Binds and alias-like functions
+# ------------------------------------------------------------------------------
+
+bgr () {
+ nohup $@ 2>&1 &
+ disown
+}
+
bindkey '^H' backward-kill-word