dotfiles/playbooks/roles/shell/tasks/nvim.yml

8 lines
306 B
YAML
Raw Normal View History

---
- name: Create init.vim
template:
src: templates/init.vim.j2
dest: ~/.config/nvim/init.vim
- name: Install vim-plug
shell: sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'