From 1ab6f3e6f9ce40de9b92112a51a8fa8dc376af26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 13 Apr 2024 18:09:16 +0200 Subject: [PATCH] Remove ~/.vim completely --- user.yml | 11 +---------- zsh/zprofile.j2 | 2 -- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/user.yml b/user.yml index ae30a2a..e854cb2 100644 --- a/user.yml +++ b/user.yml @@ -271,24 +271,15 @@ - ~/.local/share/nvim/ - ~/.local/share/nvim/site/ - ~/.local/share/nvim/site/autoload/ - - ~/.vim/ - - ~/.vim/autoload - name: install vim-plug copy: src: contrib/vim-plug/plug.vim - dest: ~/.vim/autoload/plug.vim + dest: ~/.local/share/nvim/site/autoload/plug.vim owner: "{{ user.name }}" group: "{{ user_group_name }}" mode: "0644" - - name: symlink vim-plug for neovim - file: - state: link - path: ~/.local/share/nvim/site/autoload/plug.vim - src: ~/.vim/autoload/plug.vim - force: true - - name: install vim plugins command: nvim --headless +PlugInstall +qall register: vim_plugin_install diff --git a/zsh/zprofile.j2 b/zsh/zprofile.j2 index d91d933..5b3c110 100644 --- a/zsh/zprofile.j2 +++ b/zsh/zprofile.j2 @@ -18,8 +18,6 @@ export BROWSER="firefox" export PAGER="less" export LESS="FRX" -export VIMRC="$HOME/.vimrc" - export WINEPATH="$HOME/games/wine" export LOGDIR="$HOME/.var/log"