We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a24fecc commit 416b890Copy full SHA for 416b890
README.md
@@ -136,7 +136,7 @@ You will need to exit Neovim manually with `:qa` after each step.
136
137
if filereadable($XDG_CONFIG_HOME . '/nvim/plugged/nvimrc/plugins.vim')
138
source $XDG_CONFIG_HOME/nvim/plugged/nvimrc/plugins.vim
139
- if !$NVIMRC_INSTALL == 'true'
+ if $NVIMRC_INSTALL != 'true'
140
Plug 'makenew/nvimrc'
141
endif
142
else
install.sh
@@ -80,7 +80,7 @@ call plug#begin(\$XDG_CONFIG_HOME . '/nvim/plugged')
80
81
if filereadable(\$XDG_CONFIG_HOME . '/nvim/plugged/nvimrc/plugins.vim')
82
source \$XDG_CONFIG_HOME/nvim/plugged/nvimrc/plugins.vim
83
- if !\$NVIMRC_INSTALL == 'true'
+ if \$NVIMRC_INSTALL != 'true'
84
Plug '$repo'
85
86
0 commit comments