diff options
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 16 |
1 files changed, 4 insertions, 12 deletions
@@ -1,13 +1,8 @@ export TERM="xterm-256color" -# If you come from bash you might have to change your $PATH. -# export PATH=$HOME/bin:/usr/local/bin:$PATH - # Path to your oh-my-zsh installation. export ZSH=/home/julian/.oh-my-zsh -# Set name of the theme to load. Optionally, if you set this to "random" -# it'll load a random theme each time that oh-my-zsh is loaded. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes ZSH_THEME="af-magic" @@ -16,7 +11,7 @@ ZSH_THEME="af-magic" # Uncomment the following line to use hyphen-insensitive completion. Case # sensitive completion must be off. _ and - will be interchangeable. -# HYPHEN_INSENSITIVE="true" +HYPHEN_INSENSITIVE="true" # Uncomment the following line to disable bi-weekly auto-update checks. # DISABLE_AUTO_UPDATE="true" @@ -24,12 +19,6 @@ ZSH_THEME="af-magic" # Uncomment the following line to change how often to auto-update (in days). # export UPDATE_ZSH_DAYS=13 -# Uncomment the following line to disable colors in ls. -# DISABLE_LS_COLORS="true" - -# Uncomment the following line to disable auto-setting terminal title. -# DISABLE_AUTO_TITLE="true" - # Uncomment the following line to enable command auto-correction. ENABLE_CORRECTION="true" @@ -57,6 +46,9 @@ plugins=(git sudo pass) source $ZSH/oh-my-zsh.sh +autoload -Uz compinit +compinit + # User configuration # export MANPATH="/usr/local/man:$MANPATH" |