This repo contains:
dotfiles: configuration files fortmux,gitandbash- A few python scripts
- Clone this repo
- Replace
$DOTFILES_ROOTwith absolute path to repo root in these instructions.
- Add to your
~/.bashrc:
# Load bash config from dotfiles
. $DOTFILES_ROOT/dotfiles/bash/rc.sh- Reload shell:
. ~/.bashrc- Add these symlinks:
ln -s $DOTFILES_ROOT/dotfiles/git/config.ini ~/.gitconfig
ln -s $DOTFILES_ROOT/dotfiles/git/ignore ~/.gitignore- Setup default tmux statusbar config
cp -n $DOTFILES_ROOT/tools/statusbar_conf.json.default $DOTFILES_ROOT/tools/statusbar_conf.json- Optional: tweak config
- Install tmux plugin manager and plugins:
# install tmux plugin manager
if [ ! -d ~/.tmux/plugins/tpm ]; then
git clone -q https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
fi
# install tmux plugins
~/.tmux/plugins/tpm/bin/install_plugins- Add symlink
ln -s $DOTFILES_ROOT/dotfiles/tmux/config.tmux ~/.tmux.conf