Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
2017-05-03 16:10:13 +03:00
commit c78cb78ff0
72 changed files with 3570 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# BASH options
bash_opts=(
'checkwinsize' 'histappend' 'autocd'
'checkhash'
)
shopt -s "${bash_opts[@]}"
shopt -u sourcepath
PROMPT_COMMAND='set_prompt'
HISTCONTROL="$HISTCONTROL${HISTCONTROL+,}ignoredups"
HISTCONTROL='ignoreboth'
# Environment
export LC_ALL='en_US.UTF-8'
export EDITOR='editor'
export WINEARCH='win32'
# GPG
GPG_TTY=$(tty)
export GPG_TTY
#export TERM='xterm-256color'
export COLORTERM='xterm-256color'
# Specific to this setup
alias dotfiles_pull='git -C ~/git/dotfiles pull'
alias dotfiles_push='git -C ~/git/dotfiles commit -a; git -C ~/git/dotfiles push'