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; then git pull;
else git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm; fi 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 # Change default shell to zsh
- shell: - shell:
- description: Change default shell to zsh - description: Change default shell to zsh

2
config/install.conf.yml

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

9
config/macos.conf.yml

@ -1,4 +1,13 @@
# bootstrap: macos # 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: - create:
- ~/.config/kitty - ~/.config/kitty

Loading…
Cancel
Save