-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
61 lines (50 loc) · 1.82 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
# 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
PROMPT='%~ %'
# Vim mode
bindkey -v
# ---- Zoxide (better cd) ----
eval "$(zoxide init zsh)"
alias nv="nvim"
alias kv="NVIM_APPNAME=kickstart nvim"
alias lv="NVIM_APPNAME=LazyVim nvim"
alias ls="eza --icons=always" # better ls
alias cd="z"
alias mutt="neomutt"
export PATH=/usr/local/bin:$PATH
export PATH="/usr/local/opt/neovim/bin:$PATH"
# history setup
HISTFILE=$HOME/.zhistory
SAVEHIST=1000
HISTSIZE=999
setopt share_history
setopt hist_expire_dups_first
setopt hist_ignore_dups
setopt hist_verify
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/local/share/powerlevel10k/powerlevel10k.zsh-theme
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
export NVM_DIR="$HOME/.nvm"
# source $(brew --prefix nvm)/nvm.sh
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
source $(brew --prefix nvm)/nvm.sh
# pnpm
export PNPM_HOME="/Users/neil/Library/pnpm"
export PATH="$PNPM_HOME:$PATH"
# pnpm end
# bun completions
[ -s "/Users/neil/.bun/_bun" ] && source "/Users/neil/.bun/_bun"
# dayfile() {
# nvim $(date +%Y-%m-%d).txt
# }
dayfile() {
local days=${1:-0} # If no parameter is provided, default to 0 (today)
nvim $(date -v"+${days}d" +%Y-%m-%d).txt
}