# Ansible managed : z_my_profile.sh modified on 2023-10-16 by tom on skyline.opendoor.fr
# this file was created from the role: tco.socle
alias mv='mv -i'
alias ls='ls --color=auto -h -l -v'
alias l='ls'
alias ll="ls -a"
alias lt="ls -rt"
alias llt="ls -art"
alias lc="/bin/ls -c1"
alias grep="grep --color -E"
alias today='date -I'
alias nocomment='grep -v -E '\''^(\s+#|#|$)'\'''
shopt -s histverify
shopt -s histreedit
shopt -s histappend
shopt -s extglob
shopt -s dotglob
shopt -s cdspell
# one cmdline == one line in histfile
shopt -s cmdhist
# dont save duplicate in history
# dont save cmdline starting with a space in history
HISTCONTROL=ignoreboth
# record shell history with a timestamp
HISTTIMEFORMAT='%F %T '
export HISTSIZE=
export HISTFILESIZE=
export HISTFILE=~/.my_history
shopt -s histappend
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
export EDITOR=vim
fixssh ()
{
   export $(tmux show-env | grep SSH_AUTH_SOCK)
}

