diff --git a/install_nvim.yaml b/install_nvim.yaml index 48a5556..f0ec6b2 100644 --- a/install_nvim.yaml +++ b/install_nvim.yaml @@ -1,8 +1,22 @@ --- - name: Installing Nvim - hosts: 192.168.1.25 + hosts: 192.168.1.122 tasks: + - name: make sure git is installed + become: yes + apt: + update_cache: yes + name: git + state: latest + + - name: install build essential + become: yes + apt: + update_cache: yes + name: build-essetial + state: latest + - name: Pulling from github ansible.builtin.command: cmd: "curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz"