-
I have followed the installation instructions (using):
Then I created return require('packer').startup(function()
use 'n1ghtmare/noirblaze-vim'
end) Then I modified my require('plugins') At this point when I run This is the packer installation folder though and If I run it, it breaks packer. What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
So I figured it out and just in case someone else is struggling with this, here is what I did. Apparently the documentation mentions that packer can manage itself (somehow I missed that...), all I had to do was include packer as a plugin: return require('packer').startup(function()
use 'wbthomason/packer.nvim'
use 'n1ghtmare/noirblaze-vim'
end) |
Beta Was this translation helpful? Give feedback.
So I figured it out and just in case someone else is struggling with this, here is what I did.
Apparently the documentation mentions that packer can manage itself (somehow I missed that...), all I had to do was include packer as a plugin: