We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196aa47 commit 48f7f36Copy full SHA for 48f7f36
.zshrc
@@ -60,7 +60,6 @@ setopt append_history # append history instead of overwriting
60
setopt share_history # share history between sessions
61
setopt hist_ignore_dups # ignore duplicate entries in history
62
setopt extended_history # save timestamp of each command in history
63
-setopt correct_all # autocorrect commands
64
setopt no_beep # disable beep on errors
65
setopt interactive_comments # allow comments in interactive shell
66
@@ -335,6 +334,11 @@ v() {
335
334
nvim $(fzf)
336
}
337
+installdeb() {
338
+ wget -P ~/Downloads/ "$1"
339
+ sudo dpkg -i ~/Downloads/"${1##*/}"
340
+}
341
+
342
# Accepts one history line number as argument.
343
# Use `dc -1` to remove the last line.
344
dc () {
0 commit comments