Initial commit of very basic dotfiles

This commit is contained in:
Dave Lens
2012-04-26 11:55:03 +02:00
parent fc2a690f83
commit dd60bd7ba6
12 changed files with 3301 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
# General settings
export EDITOR=vim
export CLICOLOR=1
# Prefer the Queen's English and use UTF-8.
export LC_ALL='en_GB.UTF-8';
export LANG='en_GB';
# don't put duplicate lines in the history
export HISTCONTROL=ignoredups
# let the history ignore the following commands
export HISTIGNORE="ls:ll:la:pwd:clear:h:j"
# append to the history file rather than overwriting
shopt -s histappend
shopt -s nocaseglob;