forked from mokevnin/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvim.yml
More file actions
38 lines (29 loc) · 1023 Bytes
/
vim.yml
File metadata and controls
38 lines (29 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
- hosts: all
tasks:
- apt_repository:
repo: "ppa:jonathonf/vim"
when: ansible_distribution == 'Ubuntu'
become: yes
- package: name=vim-nox state=latest
become: yes
- file: src={{ curdir }}/files/{{ item }} dest=~/.{{ item }} state=link
with_items:
- vimrc
- file: path=~/.vim/{{ item }} state=directory recurse=Yes
with_items:
- autoload
# - file: src={{ curdir }}/files/vimrc dest=~/.config/nvim/init.vim state=link
# - pip: name=neovim state=latest
# become: yes
- get_url:
force: yes
dest: ~/.vim/autoload/plug.vim
url: 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
# - git:
# repo: 'https://github.com/VundleVim/Vundle.vim.git'
# dest: ~/.vim/bundle/Vundle.vim
# version: v0.10.2
- file: path=~/.vim/spell state=directory
# - command: nvim -i NONE -c PlugUpdate -c quitall
# FIXME: compile https://github.com/Shougo/vimproc.vim