-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_zshrc
80 lines (66 loc) · 2.89 KB
/
dot_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
# .zshrc
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
################################################################################
# PATH
################################################################################
HOME="/home/joey"
# export JOEY=/storeData/project/user/xuzhenyu
export PATH=${HOME}/.local/bin:${PATH}
# LD_LIBRARY_PATH
export LD_LIBRARY_PATH=${HOME}/.local/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
################################################################################
# HISTORY
################################################################################
# the detailed meaning of the below three variable can be found in `man zshparam`.
export HISTFILE="${HOME}/.zsh_history"
export HISTSIZE=1000000 # the number of items for the internal history list
export SAVEHIST=1000000 # maximum number of items for the history file
# The meaning of these options can be found in man page of `zshoptions`.
setopt HIST_IGNORE_ALL_DUPS # do not put duplicated command into history list
setopt HIST_SAVE_NO_DUPS # do not save duplicated command
setopt HIST_REDUCE_BLANKS # remove unnecessary blanks
setopt INC_APPEND_HISTORY_TIME # append command to history file immediately after execution
################################################################################
# CONDA
################################################################################
# Attaches tmux to a session (example: ta portal)
alias ta='tmux attach -t'
# Creates a new session
alias tn='tmux new-session -s'
# Lists all ongoing sessions
alias tl='tmux list-sessions'
################################################################################
# CONDA
################################################################################
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/joey/mambaforge/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/joey/mambaforge/etc/profile.d/conda.sh" ]; then
. "/home/joey/mambaforge/etc/profile.d/conda.sh"
else
export PATH="/home/joey/mambaforge/bin:$PATH"
fi
fi
unset __conda_setup
# mamba
if [ -f "/storeData/project/user/xuzhenyu/mambaforge/etc/profile.d/mamba.sh" ]; then
. "/storeData/project/user/xuzhenyu/mambaforge/etc/profile.d/mamba.sh"
fi
# <<< conda initialize <<<
################################################################################
# UTILs
################################################################################
# starship
eval "$(starship init zsh)"
# fzf
[ -f "${HOME}/.fzf.zsh" ] && source "${HOME}/.fzf.zsh"
################################################################################
# prezto
################################################################################
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
# WSL only, fix blank screen
export TERM=xterm-color