Alpha Chen 8 months ago
parent 3d424223c9
commit 43bf24f5a8
Signed by: alpha
SSH Key Fingerprint: SHA256:3fOT8fiYQG/aK9ntivV3Bqtg8AYQ7q4nV6ZgihOA20g

@ -11,10 +11,3 @@
dest: ~/{{ item }}
state: link
loop: "{{ ls_dotfiles.stdout_lines | difference(['.git', '.gitmodules']) }}"
- name: Symlink Prezto runcoms
file:
src: "{{ item }}"
dest: ~/.{{ item | basename }}
state: link
with_fileglob: "~/.zprezto/runcoms/z*"

@ -11,18 +11,20 @@
# macOS things
- name: Import terminal profile
ansible.builtin.command: open ~/.macos/Alpha.terminal
- name: Set terminal profile to be the default
osx_defaults:
domain: com.apple.Terminal
key: "{{ item }} Window Settings"
type: string
value: Alpha
with_items:
- Default
- Startup
# Not needed anymore since I've switched to kitty
#
# - name: Import terminal profile
# ansible.builtin.command: open ~/.macos/Alpha.terminal
#
# - name: Set terminal profile to be the default
# osx_defaults:
# domain: com.apple.Terminal
# key: "{{ item }} Window Settings"
# type: string
# value: Alpha
# with_items:
# - Default
# - Startup
- import_playbook: homebrew.yml
@ -32,5 +34,11 @@
- hosts: all
tasks:
# https://tratt.net/laurie/blog/2024/faster_shell_startup_with_shell_switching.html
- name: Set default shell to sh
user:
name: alpha
shell: /bin/sh --login
- ansible.builtin.command: "luarocks install fennel"
# vim: ft=yaml.ansible

Loading…
Cancel
Save