diff options
author | katherine <ageha@airen-no-jikken.icu> | 2023-12-02 17:34:13 -0700 |
---|---|---|
committer | katherine <ageha@airen-no-jikken.icu> | 2023-12-02 17:34:13 -0700 |
commit | bfc87ea75a77a723d3156990e658d3685f431f2f (patch) | |
tree | bd332134dde3b660081c9df21f302b44be0f6185 | |
parent | f18bdf7c821713e6909b37221800a50f1cc7ee6f (diff) | |
download | dotfiles-bfc87ea75a77a723d3156990e658d3685f431f2f.tar.gz |
disable vim easytags for root
-rw-r--r-- | .vimrc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -32,8 +32,10 @@ endif "FUNCTIONALITY Plug 'junegunn/vim-easy-align' -Plug 'xolox/vim-misc' -Plug 'https://git.airen-no-jikken.icu/vim-easytags.git' +if $USER != 'root' + Plug 'xolox/vim-misc' + Plug 'https://git.airen-no-jikken.icu/vim-easytags.git' +endif Plug 'tommcdo/vim-exchange' |