Skip to content
Snippets Groups Projects
Commit 74a74fc5 authored by nimrod's avatar nimrod
Browse files

- Added bash_completion.d directory, adapted .bashrc to source the files

  in the directory, moved the Molecule Bash completion script there.
- The gcc alias is now even stricter.
- Enabled cmdhist.
parent ddf0401b
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ if [ -n "$BASH" ]
then
shopt -s histappend
shopt -s checkwinsize
shopt -s cmdhist
fi
# make less more friendly for non-text input files, see lesspipe(1)
......@@ -30,13 +31,12 @@ fi
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
[ -d $HOME/.bash_completion.d ] && . $HOME/.bash_completion.d/*
if [ -f /usr/local/bin/virtualenvwrapper.sh ]
then
. /usr/local/bin/virtualenvwrapper.sh
fi
. $HOME/.local/share/bash/molecule.bash-completion.sh
export REPREPRO_BASE_DIR=$HOME/Documents/Shore/debian-repository
export EDITOR=vim
export GOPATH=$HOME/Documents/Golang
......@@ -50,7 +50,7 @@ export AWS_DEFAULT_PROFILE='shore'
alias ll='ls -lha'
alias la='ls -A'
alias l='ls -CF'
alias gcc='gcc --std=c99 -Wall'
alias gcc='gcc --std=c99 -Wall -Wextra -Werror -pedantic'
alias dpkglog="grep -v 'status\|trigproc\|configure' /var/log/dpkg.log"
alias deborphan='deborphan -a --no-show-section --ignore-suggests'
alias aptitude='aptitude --display-format %p --quiet'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment