Browse Source

feat: update dotbot config fot bootstrap

master
Ein Verne 2 years ago
parent
commit
70e213cd1e
  1. 9
      config/bootstrap.conf.yml
  2. 2
      config/install.conf.yml
  3. 9
      config/macos.conf.yml

9
config/bootstrap.conf.yml

@ -21,6 +21,15 @@
then git pull;
else git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm; fi
- shell:
- description: Install pyenv
quiet: true
command: |
if ! command -v pyenv &> /dev/null
then
curl https://pyenv.run | bash
fi
# Change default shell to zsh
- shell:
- description: Change default shell to zsh

2
config/install.conf.yml

@ -3,7 +3,7 @@
relink: true
force: true
- clean: ['~']
- clean: [ '~' ]
- link:
~/.dotfiles:

9
config/macos.conf.yml

@ -1,4 +1,13 @@
# bootstrap: macos
- shell:
- description: Install Homebrew
quiet: true
command: |
if ! command -v brew &> /dev/null
then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
- create:
- ~/.config/kitty

Loading…
Cancel
Save