2019-10-26 17:05:31 +00:00
|
|
|
# zsh key timeout
|
|
|
|
export KEYTIMEOUT=1
|
|
|
|
|
2019-11-11 06:31:15 +00:00
|
|
|
# prompt customization
|
|
|
|
export PURE_PROMPT_SYMBOL="λ"
|
|
|
|
export PURE_PROMPT_VICMD_SYMBOL="y"
|
|
|
|
|
2019-10-26 17:05:31 +00:00
|
|
|
# zsh history settings
|
|
|
|
export HISTFILE=~/.zsh_history
|
|
|
|
export HISTSIZE=1000
|
|
|
|
export SAVEHIST=1000
|
|
|
|
|
2020-01-13 07:26:51 +00:00
|
|
|
# Variable to pass to sdotdrop to get current user
|
|
|
|
export USRNAME=$USER
|
|
|
|
|
2019-10-26 17:05:31 +00:00
|
|
|
# go path
|
|
|
|
export GOPATH=~/.bin/go
|
|
|
|
|
|
|
|
# fzf settings
|
2020-09-18 20:26:58 +00:00
|
|
|
export FZF_DEFAULT_COMMAND='fd -Ht f'
|
|
|
|
export FZF_ALT_C_COMMAND='fd -Ht d'
|
2020-04-17 07:36:41 +00:00
|
|
|
export FZF_DEFAULT_OPTS='-m --bind ctrl-a:select-all,ctrl-d:deselect-all,ctrl-t:toggle-all'
|
2019-10-26 17:05:31 +00:00
|
|
|
export FZF_COMPLETION_TRIGGER='**'
|
|
|
|
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
2020-01-18 20:24:15 +00:00
|
|
|
export FZF_CTRL_T_OPTS='--preview "/usr/bin/cat {} | nvimpager -c "'
|
2019-10-26 17:05:31 +00:00
|
|
|
|
|
|
|
# use lesspipe with less
|
|
|
|
export LESSOPEN="|lesspipe.sh %s"
|
|
|
|
|
2020-11-21 13:37:58 +00:00
|
|
|
# dotfile repository location
|
|
|
|
export DOTREPO="$HOME/git/dotfiles"
|
2019-10-26 17:05:31 +00:00
|
|
|
|
|
|
|
# nvim ftw!
|
|
|
|
export EDITOR=nvim
|
|
|
|
export PAGER="nvimpager -p"
|
|
|
|
|
|
|
|
# use gpg for ssh
|
|
|
|
export GPG_TTY="$(tty)"
|
2020-12-16 22:03:06 +00:00
|
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
|
|
gpgconf --launch gpg-agent
|
2019-10-26 17:05:31 +00:00
|
|
|
|
|
|
|
# tehfuk
|
|
|
|
eval $(thefuck --alias)
|