Removed commit history
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
commit
b1335a3628
199 changed files with 36930 additions and 0 deletions
34
home/.config/zsh/01-env.zsh
Normal file
34
home/.config/zsh/01-env.zsh
Normal file
|
@ -0,0 +1,34 @@
|
|||
# zsh key timeout
|
||||
export KEYTIMEOUT=1
|
||||
|
||||
# zsh history settings
|
||||
export HISTFILE=~/.zsh_history
|
||||
export HISTSIZE=1000
|
||||
export SAVEHIST=1000
|
||||
export setopt appendhistory
|
||||
|
||||
# go path
|
||||
export GOPATH=~/.bin/go
|
||||
|
||||
# fzf settings
|
||||
export FZF_DEFAULT_COMMAND='rg --files --hidden 2>/dev/null'
|
||||
export FZF_COMPLETION_TRIGGER='**'
|
||||
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
||||
|
||||
# use lesspipe with less
|
||||
export LESSOPEN="|lesspipe.sh %s"
|
||||
|
||||
# dotdrop repository location
|
||||
export DOTREPO="$HOME/Git/dotfiles"
|
||||
|
||||
# nvim ftw!
|
||||
export EDITOR=nvim
|
||||
export PAGER="nvimpager -p"
|
||||
|
||||
# use gpg for ssh
|
||||
export GPG_TTY="$(tty)"
|
||||
export SSH_AUTH_SOCK="/run/user/$UID/gnupg/S.gpg-agent.ssh"
|
||||
gpg-connect-agent updatestartuptty /bye > /dev/null
|
||||
|
||||
# tehfuk
|
||||
eval $(thefuck --alias)
|
Loading…
Add table
Add a link
Reference in a new issue