-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
68 lines (56 loc) · 1.96 KB
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# _____ __ __
# / ____| \ \ / /
# | | __ \ \ /\ / / GameWarrior
# | | |_ | \ \/ \/ / https://github.com/game-warrior
# | |__| | \ /\ / @gamewarrior010@social.linux.pizza
# \_____| \/ \/
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=10000
SAVEHIST=1000
setopt extendedglob
unsetopt beep
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/gardner/.zshrc'
autoload -Uz compinit
compinit
# Vi mode
set -o vi
# Ps1 Prompt
autoload -U colors && colors # Load colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%m %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}%b"
#Doom Emacs
export PATH="$HOME/.emacs.d/bin:$PATH"
#Weather API
export WEATHER_CLI_API=83dda3fa787a576975d5fc6352a7b38f
# XDG things
# GO
export GOPATH="$XDG_DATA_HOME"/go
export PATH="$HOME/.cargo/bin:$PATH"
if [[ "$OSTYPE" == darwin* ]]; then export PATH="/opt/homebrew/bin:$PATH"; fi
# Source Aliases
source ~/.config/zsh/aliases.zsh
# Bling
#neofetch
#pfetch
#pokemon-colorscripts -n treecko
#pokemon-colorscripts -r
#colorscript -e crunchbang
echo " _____ __ __
/ ____| \ \ / /
| | __ \ \ /\ / / GameWarrior
| | |_ | \ \/ \/ / https://github.com/game-warrior
| |__| | \ /\ / @gamewarrior010@social.linux.pizza
\_____| \/ \/"
# End of lines added by compinstall
if [[ "$OSTYPE" == darwin* ]]; then source /opt/homebrew/Cellar/zsh-syntax-highlighting/0.7.1/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh; fi
export PATH="/opt/homebrew/opt/unzip/bin:$PATH"
if [[ "$(uname)" == "Linux" ]]; then
if [[ -f /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]]; then
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
else
echo "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh does not exist"
fi
fi