dotfiles/home/.config/zsh/01-env.zsh

76 lines
2.1 KiB
Bash
Raw Normal View History

# key timeout
export KEYTIMEOUT=1
# prompt customization
export PURE_PROMPT_SYMBOL="λ"
export PURE_PROMPT_VICMD_SYMBOL="y"
# history settings
export HISTFILE=~/.zsh_history
export HISTSIZE=10000
export SAVEHIST=10000
# Ignore these functions from history since they will
# append the expandend command to the history
export HISTORY_IGNORE="(pi|pr)"
# Additional settings (source https://jdhao.github.io/2021/03/24/zsh_history_setup)
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_SAVE_NO_DUPS
setopt HIST_REDUCE_BLANKS
setopt INC_APPEND_HISTORY_TIME
setopt EXTENDED_HISTORY
2021-09-06 13:01:34 +03:00
# Enable completions for aliases
setopt no_complete_aliases
2021-09-06 13:01:34 +03:00
# Variable to pass to sdotdrop to get current user
export USRNAME=$USER
2021-08-17 19:36:11 +03:00
# Add ~/.bin to path
export PATH="/home/$USER/.bin:$PATH"
# go path
2021-08-17 19:36:11 +03:00
export GOPATH=~/.go
2021-11-13 13:07:50 +02:00
# fzf settings
export FZF_DEFAULT_COMMAND='fd -Ht f'
export FZF_ALT_C_COMMAND='fd -Ht d'
export FZF_DEFAULT_OPTS='-m --ansi --bind ctrl-a:toggle-all,ctrl-d:deselect-all,ctrl-t:toggle-all'
export FZF_COMPLETION_TRIGGER='**'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export FZF_CTRL_T_OPTS='--preview "bat --color=always --style=numbers --line-range=:500 {}"'
_fzf_compgen_dir() {
2022-03-11 18:14:21 +02:00
fd -Ht d
2021-11-13 13:07:50 +02:00
}
_fzf_compgen_path() {
2022-03-11 18:14:21 +02:00
fd -Ht f
2021-11-13 13:07:50 +02:00
}
2020-11-21 15:37:58 +02:00
# dotfile repository location
export DOTREPO="$HOME/git/dotfiles"
# nvim ftw!
export EDITOR=nvim
export PAGER="$EDITOR -R +\"lua require 'pager'\""
2022-08-05 09:38:06 +03:00
export GIT_PAGER="$EDITOR -c 'set ft=git' -R +\"lua require 'pager'\""
2021-08-17 21:26:05 +03:00
export PARU_PAGER="$PAGER -c 'set ft=PKGBUILD'"
export AUR_PAGER=$EDITOR
export MANPAGER="$EDITOR +\"lua require 'pager'\" +Man!"
2022-04-10 13:15:40 +03:00
export SYSTEMD_EDITOR=$EDITOR
2022-04-14 10:57:51 +03:00
export SYSTEMD_PAGER=less
# Use GPG for SSH authentication
export GPG_TTY="$(tty)"
# set SSH_AUTH_SOCK if not logging in over SSH
2021-10-06 21:26:24 +03:00
if [ "$SSH_CONNECTION" = "" ]; then
2022-03-11 18:14:21 +02:00
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
#gpgconf --launch gpg-agent
gpg-connect-agent updatestartuptty /bye >/dev/null
fi
# Enable grc colorization of supported commands
[[ -s "/etc/grc.zsh" ]] && source /etc/grc.zsh
2021-11-30 17:38:54 +02:00
# Disable dotdrop submodule auto update
2022-04-10 13:15:40 +03:00
export DOTDROP_AUTOUPDATE=no