diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-06-13 16:10:53 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-06-13 16:10:53 +0300 |
| commit | 6cf03557358c586fbe1a5db0c6614c386a3f4763 (patch) | |
| tree | 0528c422032c59d4fe7f57bf39d423c106d68b52 /.zshrc | |
| parent | 7613b136fa621d541a2c17e6ad0f4069ae6dde6b (diff) | |
| download | dotfiles-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-- | .zshrc | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |
