diff options
| author | Maximilian Möhring | 2024-09-19 10:25:09 +0200 |
|---|---|---|
| committer | Maximilian Möhring | 2024-09-19 10:25:09 +0200 |
| commit | 31dbecc7892afd156a560ee890314e6f2edae4ae (patch) | |
| tree | c332c8cd179e2fdcb30eb1ae72f8be3fb9484cfb /roles/common-linux/tasks/vim.yml | |
| parent | b64441ad8a03eb6a1bc536d169a3e555af3f6bde (diff) | |
| download | ansible-31dbecc7892afd156a560ee890314e6f2edae4ae.tar.gz | |
add vim
Diffstat (limited to 'roles/common-linux/tasks/vim.yml')
| -rw-r--r-- | roles/common-linux/tasks/vim.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/roles/common-linux/tasks/vim.yml b/roles/common-linux/tasks/vim.yml new file mode 100644 index 0000000..1716c03 --- /dev/null +++ b/roles/common-linux/tasks/vim.yml @@ -0,0 +1,31 @@ +- name: mkdir ~root/.vim + file: + path: /root/.vim + state: directory + +- name: mkdir ~horus/.vim + file: + path: /home/horus/.vim + state: directory + +- name: git clone vundle for user + git: + repo: https://github.com/VundleVim/Vundle.vim.git + dest: /home/horus/.vim/bundle/Vundle.vim + +- name: git clone vundle for root + git: + repo: https://github.com/VundleVim/Vundle.vim.git + dest: /root/.vim/bundle/Vundle.vim + +- name: copy .vimrc for ~horus + copy: + src: .vimrc + dest: /home/horus/.vimrc + mode: 744 + +- name: copy .vimrc for ~root + copy: + src: .vimrc + dest: /root/.vimrc + mode: 744 |
