From 63a4f63b49617fab949a2c2c2035e129f7b8d67a Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 5 Jun 2016 00:24:37 +0100 Subject: [PATCH] Update zshrc script --- shell/zshrc.zsh | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/shell/zshrc.zsh b/shell/zshrc.zsh index aa1b184..e5de0fa 100644 --- a/shell/zshrc.zsh +++ b/shell/zshrc.zsh @@ -12,19 +12,6 @@ ZPLUG_HOME="$DOTZSH/zplug-cache" # Don't wrap these commands in a Bundler wrapper. UNBUNDLED_COMMANDS=(shotgun) -# Enable bash-style completion. -autoload -U bashcompinit -bashcompinit - -# Disable shared history. -unsetopt share_history - -# Disable attempted correction of commands (is wrong 98% of the time). -unsetopt correctall - -# Cause I hit emacs shorts too much. -bindkey -s "\C-x\C-f" "cd " - # # zplug # @@ -67,3 +54,20 @@ if zplug check zsh-users/zsh-syntax-highlighting; then fi zplug load + +# +# Basic Z-Shell settings +# + +# Enable bash-style completion. +autoload -U bashcompinit +bashcompinit + +# Disable shared history. +unsetopt share_history + +# Disable attempted correction of commands (is wrong 98% of the time). +unsetopt correctall + +# Cause I hit emacs shorts too much. +bindkey -s "\C-x\C-f" "cd "