Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DMcP89 committed Jul 22, 2024
1 parent 7d3d7d7 commit a326557
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ansible-playbooks/vim-package-managers-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
- name: vundle-install
hosts: localhost
tasks:
- name: Install vundle plugin manager for Vim
git:
repo: 'https://github.com/VundleVim/Vundle.vim.git'
dest: ~/.vim/bundle/Vundle.vim
- name: vim-plug-install
hosts: localhost
tasks:
- name: Install vim-plug
shell: >
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

0 comments on commit a326557

Please sign in to comment.