From c3083bc8a79a1ff70aa813b6b61d6f6490a50615 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Fri, 22 Mar 2024 15:54:15 +0000 Subject: [PATCH] Add neovim checkout --- roles/home-cli/tasks/vim.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/home-cli/tasks/vim.yml b/roles/home-cli/tasks/vim.yml index 8ee4afd..e15c7e3 100644 --- a/roles/home-cli/tasks/vim.yml +++ b/roles/home-cli/tasks/vim.yml @@ -26,3 +26,8 @@ repo: https://github.com/acperkins/vimfiles.git dest: "{{ ansible_env.HOME }}/.vim" when: usr_bin_git.stat.exists or usr_local_bin_git.stat.exists +- name: Clone neovim settings + ansible.builtin.git: + repo: https://github.com/acperkins/vimfiles.git + dest: "{{ ansible_env.XDG_CONFIG_HOME }}/nvim" + when: usr_bin_git.stat.exists or usr_local_bin_git.stat.exists