Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mickahell committed Apr 23, 2024
1 parent 3b1eaf0 commit 9f5b956
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ homebrew_cask_apps:
- google-drive
- slack
- discord
- wch-ch34x-usb-serial-driver
homebrew_taps: []

# MAS - Apps Store
Expand Down
2 changes: 1 addition & 1 deletion roles/osx/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ansible.builtin.copy:
src: ".osx"
dest: "{{ osx_path }}"
mode: '0644'
mode: '0755'

# TODO: Use sudo once .osx can be run via root with no user interaction.
- name: Run .osx dotfiles
Expand Down
4 changes: 4 additions & 0 deletions roles/sublime/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
ansible.builtin.file:
path: "{{ item }}"
state: directory
mode: '0700'
loop:
- "{{ sublime_base_path }}/{{ sublime_config_path }}"
- "{{ sublime_base_path }}/Installed Packages"
Expand All @@ -12,14 +13,17 @@
ansible.builtin.get_url:
url: "{{ sublime_package_url }}"
dest: "{{ sublime_base_path }}/Installed Packages/Package Control.sublime-package"
mode: '700'

- name: Ensure Sublime Package Control Packages are configured.
ansible.builtin.template:
src: Package_Control.sublime-settings.j2
dest: "{{ sublime_base_path }}/{{ sublime_config_path }}/Package Control.sublime-settings"
mode: '700'

- name: Ensure Sublime text user Preferences and theme are set.
ansible.builtin.copy:
src: "{{ item }}"
dest: "{{ sublime_base_path }}/{{ sublime_config_path }}/{{ item }}"
mode: '700'
loop: "{{ sublime_theme_pref }}"

0 comments on commit 9f5b956

Please sign in to comment.