dotfiles/data/zsh/bottom-zshrc

74 lines
2.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
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
2023-08-05 19:29:17 +00:00
if command -v fd &>/dev/null; then
export FZF_DEFAULT_COMMAND="fd --type file"
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export FZF_ALT_C_COMMAND="fd --type directory"
fi
2022-12-01 03:42:39 +00:00
2023-09-11 16:36:18 +00:00
export FZF_DEFAULT_OPTS="\
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-09-11 16:36:18 +00:00
export FZF_CTRL_T_OPTS="--preview 'bat --color=always --line-range=:500 {}'"
export FZF_ALT_C_OPTS="--preview 'exa --tree --level 1 {}'"
2023-04-19 09:58:24 +00:00
fi
2022-12-01 03:42:39 +00:00
# Alias
alias g="git"
alias moe="make"
2023-06-29 07:43:56 +00:00
alias meo="make"
2022-12-01 03:42:39 +00:00
2023-07-29 17:18:59 +00:00
# https://github.com/charmbracelet/glow
2023-08-05 19:29:17 +00:00
if command -v glow &>/dev/null; then
alias gl="glow"
2023-08-04 19:05:13 +00:00
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
2023-04-19 09:58:24 +00:00
# https://github.com/jarun/nnn
if command -v nnn &>/dev/null; then
2023-08-05 19:29:17 +00:00
export NNN_FIFO=/tmp/nnn.fifo
export NNN_PLUG="p:-preview-tui"
2023-04-19 09:58:24 +00:00
fi
2023-08-19 10:19:53 +00:00
2023-08-21 17:19:18 +00:00
# https://github.com/talwat/pokeget-rs
2023-08-19 11:25:12 +00:00
rand_poke=$((RANDOM % 4))
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
fi