dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit af2f2c0bb7d4ac9f25f7aa919254b0f2ab2c1bc8 (patch)
parent 9accb8e941495a87e9ea7f743d9ef1b3c788de31
Author: Alex Karle <alex@karle.co>
Date:   Thu, 28 May 2020 00:14:44 -0400

install: Trim down what's installed by default

There's a bunch of things here that I _don't_ necessarily want on every
machine I put my dotfiles on. For example, offlineimap or mbsync.

I took out gdb too because I don't use it often and I'm happy to symlink
it manually on the few machines that I do use it on.

Diffstat:
Minstall.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/install.sh b/install.sh @@ -38,12 +38,12 @@ done # XDG_CONFIG_HOME dirs mkdir -p $HOME/.config -for d in mutt offlineimap git nvim; do +for d in mutt git nvim; do try_ln $DOTFILES/$d $HOME/.config/$d done # Traditional dotfiles -for d in bash tmux gdb X11 sh vi mbsync; do +for d in bash tmux X11 sh vi; do for f in $DOTFILES/$d/*; do try_ln $f $HOME/.`basename $f` done