You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
.config/nvim | 2 years ago | |
.fonts | 3 years ago | |
.local/bin | 2 years ago | |
.vim/autoload | 3 years ago | |
.Xmodmap | 3 years ago | |
.bash_profile | 3 years ago | |
.bashrc | 2 years ago | |
.gitconfig | 2 years ago | |
.gitignore | 5 years ago | |
.gitmodules | 3 years ago | |
.minimal.vimrc | 2 years ago | |
.tmux.conf | 2 years ago | |
.vimrc | 2 years ago | |
LICENSE | 5 years ago | |
README.md | 2 years ago |
README.md
dotfiles
These are my dotfiles, useful for my own shell configuration and not much else. Installation is easy, just paste this into your terminal.
#!/bin/sh
# Initialization script sourced from Atlassian:
# https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/
mkdir -p $HOME/dev
git clone --bare ssh://git@git.penguincoder.org:2222/penguincoder/dotfiles.git dev/dotfiles.git
function dotfiles {
git --git-dir=$HOME/dev/dotfiles.git/ --work-tree=$HOME $@
}
dotfiles checkout
if [ $? = 0 ]; then
mkdir -p .config-backup
echo "Checked out config.";
else
echo "Backing up pre-existing dot files.";
dotfiles checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}
fi;
dotfiles checkout
dotfiles config status.showUntrackedFiles no
dotfiles push --set-upstream origin master