Compare commits

..

No commits in common. "eadd69b0c6bffe8037a0448f10e9f8fcfa18620d" and "e15431de377140da99e783bda99d10964855bac0" have entirely different histories.

3 changed files with 2 additions and 10 deletions

@ -1 +0,0 @@
Subproject commit 2701e8ac3192f198fcaffbc2914d8e145589eb23

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule ".config/zsh/plugins/zsh-git-prompt"]
path = .config/zsh/plugins/zsh-git-prompt
url = https://github.com/zsh-git-prompt/zsh-git-prompt.git

8
.zshrc
View File

@ -12,7 +12,7 @@ if [[ $(uname) == "Darwin" ]]; then
source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source $(brew --prefix)/opt/gitstatus/gitstatus.prompt.zsh
else else
export PATH="${PATH}:${HOME}/.local/bin:/usr/local/sbin:${HOME}/.local/share/gem/ruby/2.0.0/bin:/usr/local/bin" export PATH="${PATH}:${HOME}/.local/bin:/usr/local/sbin:${HOME}/.local/share/gem/ruby/2.0.0/bin:/usr/local/bin"
@ -20,14 +20,10 @@ else
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
fi fi
# Config
export CONFIGDIR="${HOME}/.config" export CONFIGDIR="${HOME}/.config"
export XDG_CONFIG_HOME=$CONFIGDIR export XDG_CONFIG_HOME=$CONFIGDIR
export EDITOR=nvim export EDITOR=nvim
# Plugins
source "$CONFIGDIR/zsh/plugins/zsh-git-prompt/zshrc.sh"
# Use NVIM # Use NVIM
alias vim=nvim alias vim=nvim
@ -43,7 +39,7 @@ ZSH_AUTOSUGGEST_STRATEGY=(history completion)
# Prompt # Prompt
precmd() { precmd() {
PROMPT="[%c] " PROMPT="[%c] "
RPROMPT="$(git_super_status)" RPROMPT="$GITSTATUS_PROMPT"
} }
# Added by serverless binary installer # Added by serverless binary installer
export PATH="$HOME/.serverless/bin:$PATH" export PATH="$HOME/.serverless/bin:$PATH"