Basis for vim configuration
Hyped for neovim 0.5!
This commit is contained in:
parent
256a08f1a7
commit
dd0e5a2189
12 changed files with 69 additions and 12 deletions
14
config/automatrop/roles/vim/tasks/main.yml
Normal file
14
config/automatrop/roles/vim/tasks/main.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
- name: Create nvim configuration directory
|
||||
file:
|
||||
state: directory
|
||||
path: "{{ ansible_user_dir }}/.config/{{ item }}"
|
||||
mode: "u=rwx,g=rx,o=rx"
|
||||
with_items:
|
||||
- nvim
|
||||
|
||||
- name: Configure nvim
|
||||
template:
|
||||
src: nvim.j2
|
||||
dest: "{{ ansible_user_dir }}/.config/nvim/init.vim"
|
||||
mode: "u=rw,g=r,o=r"
|
||||
tags: g
|
Loading…
Add table
Add a link
Reference in a new issue