-
In my plugins.nix, I am trying to add the base16-schemes plugin, in order to use the base16-classic-dark theme. However, it is generating an error.
Any thoughts?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We have #389 in the works for adding base16 support, or you could set up a Neovim plugin that supports base16 theming directly. |
Beta Was this translation helpful? Give feedback.
vim.extraPlugins
only accepts (n)vim plugins in the package field. You cannot use a package that's not a Vim plugin, since it'd be incorrectly added to Neovim's own runtime path. Additionally, base16-schemes in nixpkgs is not a neovim plugin -require('base16-schemes').setup
would not work.We have #389 in the works for adding base16 support, or you could set up a Neovim plugin that supports base16 theming directly.