dotfiles/data/zsh/bottom-zshrc

149 lines
4.0 KiB
Plaintext
Raw Normal View History

2023-08-05 19:29:17 +00:00
# vim: set filetype=zsh:
2023-07-17 04:50:01 +00:00
# Put this on bottom of ~/.zshrc
2023-07-07 17:25:25 +00:00
2024-02-29 20:33:47 +00:00
# https://github.com/ohmyzsh/ohmyzsh/wiki/Settings#automatic-title
ZSH_THEME_TERM_TITLE_IDLE="%~"
ZSH_THEME_TERM_TAB_TITLE_IDLE="%~"
2024-01-23 17:21:20 +00:00
# https://github.com/romkatv/powerlevel10k#how-do-i-configure-instant-prompt
typeset -g POWERLEVEL9K_INSTANT_PROMPT=off
# https://github.com/romkatv/powerlevel10k#mitigation
typeset -g POWERLEVEL9K_TERM_SHELL_INTEGRATION=true
typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=()
2024-02-06 05:04:22 +00:00
# Alias
alias g="git"
alias moe="make"
alias meo="make"
# https://wiki.archlinux.org/title/XDG_Base_Directory
export XDG_CONFIG_HOME=~/.config
export XDG_CACHE_HOME=~/.cache
export XDG_DATA_HOME=~/.local/share
2023-10-06 08:03:33 +00:00
# https://www.topbug.net/blog/2016/09/27/make-gnu-less-more-powerful/
export LESS="-RF -i -K -s -x2 --wordwrap"
2022-12-01 03:42:39 +00:00
# nvim
2023-03-16 08:43:03 +00:00
if command -v nvim &>/dev/null; then
2023-08-05 19:29:17 +00:00
export EDITOR=nvim
export VISUAL=nvim
export GIT_EDITOR=nvim
alias vi="nvim"
alias vim="nvim"
fi
2022-12-01 03:42:39 +00:00
# go
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
# Depend on your company
# Please copy this manually to ~/.zshrc
2023-08-05 19:29:17 +00:00
# export GOPRIVATE=example.company.com
2022-12-01 03:42:39 +00:00
# fzf
2023-08-06 07:26:21 +00:00
# https://github.com/junegunn/fzf
2023-04-19 09:58:24 +00:00
if command -v fzf &>/dev/null; then
2024-01-23 17:05:57 +00:00
export FZF_COMPLETION_TRIGGER='~~'
2023-08-05 19:29:17 +00:00
if command -v fd &>/dev/null; then
2024-01-23 17:05:57 +00:00
_fzf_compgen_path() {
fd --type file . "$1"
}
_fzf_compgen_dir() {
fd --type directory . "$1"
}
export FZF_DEFAULT_COMMAND="fd --type file --color=always"
2023-08-05 19:29:17 +00:00
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
2024-01-23 17:05:57 +00:00
export FZF_ALT_C_COMMAND="fd --type directory --color=always"
2023-08-05 19:29:17 +00:00
fi
2022-12-01 03:42:39 +00:00
2023-09-11 16:36:18 +00:00
export FZF_DEFAULT_OPTS="\
2024-01-23 17:05:57 +00:00
--ansi \
--pointer='🔫' --prompt='🪓 ' \
2023-08-05 19:29:17 +00:00
--color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
--color=marker:#f5e0dc,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8"
2023-10-29 15:40:07 +00:00
if command -v bat &>/dev/null; then
export FZF_CTRL_T_OPTS="--preview 'bat --color=always --line-range=:500 {}'"
fi
if command -v eza &>/dev/null; then
export FZF_ALT_C_OPTS="--preview 'eza --tree --level 1 {}'"
fi
2023-04-19 09:58:24 +00:00
fi
2022-12-01 03:42:39 +00:00
2024-01-16 14:50:48 +00:00
# https://github.com/BurntSushi/ripgrep
if command -v rg &>/dev/null; then
export RIPGREP_CONFIG_PATH="$HOME/.config/ripgrep/ripgreprc"
fi
2023-10-29 15:40:07 +00:00
# https://github.com/eza-community/eza
if command -v eza &>/dev/null; then
alias ls="eza"
alias la="eza -la"
2024-01-06 07:05:52 +00:00
alias lt="eza --tree"
2023-10-29 15:40:07 +00:00
fi
# https://github.com/wilfred/difftastic
if command -v difft &>/dev/null; then
export DFT_DISPLAY=inline
2024-01-16 07:09:24 +00:00
export DFT_CONTEXT=5
export DFT_TAB_WIDTH=2
fi
2023-01-22 14:06:31 +00:00
# https://restic.readthedocs.io/en/latest/manual_rest.html
2023-04-19 09:58:24 +00:00
if command -v restic &>/dev/null; then
2023-08-05 19:29:17 +00:00
export RESTIC_PASSWORD_FILE=$HOME/.restic_password_file
2023-04-19 09:58:24 +00:00
fi
2023-01-22 14:06:31 +00:00
# https://github.com/sharkdp/vivid
2023-03-16 08:43:03 +00:00
if command -v vivid &>/dev/null; then
2023-08-06 07:26:21 +00:00
export LS_COLORS="$(vivid generate catppuccin-mocha)"
fi
2023-03-16 08:27:23 +00:00
2024-02-10 16:56:53 +00:00
# https://github.com/ajeetdsouza/zoxide
if command -v zoxide &>/dev/null; then
eval "$(zoxide init zsh)"
fi
# https://github.com/atuinsh/atuin
if command -v atuin &>/dev/null; then
eval "$(atuin init zsh --disable-up-arrow)"
2024-02-10 16:56:53 +00:00
fi
# https://github.com/Schniz/fnm
if command -v fnm &>/dev/null; then
eval "$(fnm env --use-on-cd)"
fi
2024-03-10 18:06:52 +00:00
# https://github.com/walles/moar
if command -v moar &>/dev/null; then
export MOAR="-no-linenumbers -quit-if-one-screen -wrap"
export PAGER=moar
fi
2024-02-10 16:56:53 +00:00
# Depend on your company
# https://github.com/ankitpokhrel/jira-cli
# Remember to jira init local not cloud
export JIRA_AUTH_TYPE=bearer
2023-08-21 17:19:18 +00:00
# https://github.com/talwat/pokeget-rs
2023-10-28 20:08:04 +00:00
rand_poke=$((RANDOM % 6))
2023-08-19 11:25:12 +00:00
if [[ $rand_poke -eq 0 ]]; then
cat ~/.config/pokeget/pikachu.txt
elif [[ $rand_poke -eq 1 ]]; then
cat ~/.config/pokeget/clefairy.txt
elif [[ $rand_poke -eq 2 ]]; then
cat ~/.config/pokeget/ditto.txt
elif [[ $rand_poke -eq 3 ]]; then
cat ~/.config/pokeget/chikorita.txt
2023-10-28 20:08:04 +00:00
elif [[ $rand_poke -eq 4 ]]; then
cat ~/.config/pokeget/eevee.txt
elif [[ $rand_poke -eq 5 ]]; then
cat ~/.config/pokeget/squirtle.txt
2023-08-19 11:25:12 +00:00
fi