My shell configuration.
This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
Go to file
Andrew Coleman b6e6cf3cea add plexnerdfont to dotfiles 2018-08-10 08:31:22 -04:00
.fonts add plexnerdfont to dotfiles 2018-08-10 08:31:22 -04:00
.vim Adding rust syntax plugin 2018-07-21 00:43:39 -04:00
bin update kerl 2018-08-01 06:01:37 -04:00
.bash_aliases update instructions and aliases 2018-07-20 11:24:54 -04:00
.bash_profile my dotfiles 2018-07-17 09:48:02 -04:00
.bashrc switch to powerline-go, it appears to be much faster 2018-07-23 16:17:03 -04:00
.gitconfig add .gitconfig 2018-07-20 16:50:04 -04:00
.gitignore add plexnerdfont to dotfiles 2018-08-10 08:31:22 -04:00
.gitmodules fix module path 2018-07-23 11:18:21 -04:00
.kerlrc default kerl configuration 2018-08-01 06:28:38 -04:00
.vimrc my dotfiles 2018-07-17 09:48:02 -04:00
LICENSE Initial commit 2018-07-17 09:27:05 -04:00
README.md include vim plugin setup 2018-07-20 16:50:18 -04:00

README.md

Installation

git clone --bare git@github.com:penguincoder/dotfiles.git
function config {
  /usr/bin/git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME $@
}
mkdir -p .config-backup
config checkout
if [ $? = 0 ]; then
  echo "Checked out config.";
  else
    echo "Backing up pre-existing dot files.";
    config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}
fi;
config checkout
config config status.showUntrackedFiles no
config push --set-upstream origin master
config submodule init
config submodule update

Initialization script sourced from Atlassian: https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/