From af2f2c0bb7d4ac9f25f7aa919254b0f2ab2c1bc8 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Thu, 28 May 2020 00:14:44 -0400 Subject: [PATCH] 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. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 375150b..a10912b 100755 --- 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 -- libgit2 0.28.4