diff --git a/roles/init-server/tasks/contingent/pkg/neovim.yml b/roles/init-server/tasks/contingent/pkg/neovim.yml index 90a91ae..83c515e 100644 --- a/roles/init-server/tasks/contingent/pkg/neovim.yml +++ b/roles/init-server/tasks/contingent/pkg/neovim.yml @@ -9,17 +9,6 @@ ansible.builtin.shell: cmd: "echo {{ ansible_user }}" register: current_user -- name: Copy system ViM configuration to home directory - become: true - ansible.builtin.copy: - src: /root/.vimrc - remote_src: true - dest: "{{ ansible_user_home.stdout }}/.vimrc" - owner: "{{ ansible_user }}" - group: "{{ ansible_user }}" - mode: "644" - force: true - backup: true - name: Creating directory tree for NeoViM configuration files ansible.builtin.file: path: "{{ ansible_user_home.stdout }}/.config/nvim"