Add neovim to PATH

This commit is contained in:
sonny 2024-08-12 20:36:26 +02:00
parent 8f273cc775
commit fe9f6788c3
3 changed files with 8 additions and 9 deletions

View file

@ -189,6 +189,10 @@
when: neovim_download.state == 'file' and
(neovim_installed_version is undefined or neovim_installed_version != neovim.version)
# TODO: add new entry to PATH
- name: add neovim to PATH
become: true
template:
src: 'templates/nvim.profile.j2'
dest: '/etc/profile.d/neovim.sh'
when: ansible_facts['os_family'] == 'Debian'