summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/lib/misc.zsh
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/lib/misc.zsh
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/lib/misc.zsh')
-rw-r--r--zsh/oh-my-zsh/lib/misc.zsh35
1 files changed, 0 insertions, 35 deletions
diff --git a/zsh/oh-my-zsh/lib/misc.zsh b/zsh/oh-my-zsh/lib/misc.zsh
deleted file mode 100644
index a5d3af9..0000000
--- a/zsh/oh-my-zsh/lib/misc.zsh
+++ /dev/null
@@ -1,35 +0,0 @@
-autoload -Uz is-at-least
-
-# *-magic is known buggy in some versions; disable if so
-if [[ $DISABLE_MAGIC_FUNCTIONS != true ]]; then
- for d in $fpath; do
- if [[ -e "$d/url-quote-magic" ]]; then
- if is-at-least 5.1; then
- autoload -Uz bracketed-paste-magic
- zle -N bracketed-paste bracketed-paste-magic
- fi
- autoload -Uz url-quote-magic
- zle -N self-insert url-quote-magic
- break
- fi
- done
-fi
-
-## jobs
-setopt long_list_jobs
-
-env_default 'PAGER' 'less'
-env_default 'LESS' '-R'
-
-## super user alias
-alias _='sudo '
-
-## more intelligent acking for ubuntu users
-if (( $+commands[ack-grep] )); then
- alias afind='ack-grep -il'
-else
- alias afind='ack -il'
-fi
-
-# recognize comments
-setopt interactivecomments