fix neovim configuration directory doesn't exist
This commit is contained in:
parent
98b79f5525
commit
edb5d46e5c
1 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,10 @@
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name: neovim
|
name: neovim
|
||||||
|
- name: Create configuration directory
|
||||||
|
file:
|
||||||
|
path: ~/.config/nvim
|
||||||
|
state: directory
|
||||||
- name: Copy init.lua
|
- name: Copy init.lua
|
||||||
copy:
|
copy:
|
||||||
src: "{{ role_path }}/files/init.lua"
|
src: "{{ role_path }}/files/init.lua"
|
||||||
|
|
Reference in a new issue