-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
executable file
·81 lines (61 loc) · 2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
# justin's zsh config
#### ZSH Plugins / Prompts ####
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="powerlevel10k/powerlevel10k"
plugins=(git auto-notify you-should-use zsh-autosuggestions zsh-syntax-highlighting zsh-history-substring-search)
source $ZSH/oh-my-zsh.sh
# bindings for substring search
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
# auto notify options
AUTO_NOTIFY_IGNORE+=("lf", "emacs", "kitty")
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
#### Program Stuff ####
# adding zoxide
eval "$(zoxide init zsh)"
export PATH="$HOME/.emacs.d/bin:$PATH"
export PATH=~/.local/bin/:~/.local/bin/npm-global/bin:$PATH
export PATH=~/.cargo/bin:$PATH
#### ALIASES ####
alias vim="nvim"
alias v="nvim"
alias hx="helix"
alias ls='lsd'
alias l='ls -l'
alias la='ls -a'
alias lla='ls -la'
alias lt='ls --tree'
alias ee='emacsclient --eval "(emacs-everywhere)"'
# Speed up scrolling for the document viewer
#### ENV VARIABLES ####
export _JAVA_AWT_WM_NONREPARENTING=1
#### MISCELLANEOUS ####
# Color scheme stuff, using wal or wpg
# (cat $HOME/.config/wpg/sequences &)
# (cat ~/.cache/wal/sequences &)
# printing fortune before each new terminal
fortune -s
printf "\n"
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/justin/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/justin/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/justin/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/justin/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
source /usr/share/nvm/init-nvm.sh