-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up home folder aliases, prompt, zsh config
- Loading branch information
1 parent
6ad4868
commit 9786c89
Showing
5 changed files
with
47 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
source $HOME/aliases | ||
source $HOME/colors | ||
source $HOME/extras | ||
source $HOME/prompt | ||
|
||
source $HOME/zsh/colors.zsh | ||
source $HOME/zsh/extras.zsh | ||
source $HOME/zsh/prompt.zsh | ||
|
||
# Lines configured by zsh-newuser-install | ||
HISTFILE=~/.histfile | ||
HISTSIZE=10000 | ||
SAVEHIST=10000 | ||
setopt appendhistory autocd extendedglob nomatch notify | ||
unsetopt beep | ||
bindkey -e | ||
# End of lines configured by zsh-newuser-install | ||
# The following lines were added by compinstall | ||
zstyle :compinstall filename '$HOME/.zshrc' | ||
|
||
autoload -Uz compinit | ||
compinit | ||
# End of lines added by compinstall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,8 @@ | ||
source $XDG_CONFIG_HOME/local | ||
source $XDG_CONFIG_HOME/env | ||
|
||
source $XDG_CONFIG_HOME/aliases | ||
source $XDG_CONFIG_HOME/colors | ||
source $XDG_CONFIG_HOME/extras | ||
source $XDG_CONFIG_HOME/prompt | ||
|
||
source $XDG_CONFIG_HOME/zsh/colors.zsh | ||
source $XDG_CONFIG_HOME/zsh/extras.zsh | ||
source $XDG_CONFIG_HOME/zsh/prompt.zsh | ||
|
||
HISTFILE=~/.histfile | ||
HISTSIZE=100 | ||
SAVEHIST=100000 | ||
setopt appendhistory autocd extendedglob | ||
unsetopt beep | ||
bindkey -v | ||
|
||
# zsh autocomplete | ||
zstyle :compinstall filename '~/.zshrc' | ||
zstyle ':completion:*' rehash true | ||
|
||
autoload -Uz compinit | ||
compinit | ||
source $HOME/aliases | ||
source $HOME/colors | ||
source $HOME/extras | ||
source $HOME/prompt | ||
|
||
source $HOME/zsh/colors.zsh | ||
source $HOME/zsh/extras.zsh | ||
source $HOME/zsh/prompt.zsh |