Skip to content

Commit

Permalink
update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanchancey committed Mar 20, 2024
1 parent 4ce4c48 commit 70fc2ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions roles/neovim/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
- name: Neovim | Ensure directory exists
become: true
file:
path: "{{ ansible_user_dir }}/nvim/"
path: "{{ ansible_user_dir }}/.config/nvim/"
state: directory
mode: "0644"
directory_mode: "0755"

- name: "Neovim | Configure"
ansible.builtin.copy:
src: init.lua
dest: "{{ ansible_user_dir }}/nvim/init.lua"
dest: "{{ ansible_user_dir }}/.config/nvim/init.lua"
mode: "0644"
directory_mode: "0755"
force: true

0 comments on commit 70fc2ec

Please sign in to comment.