31 lines
1.1 KiB
Nix
31 lines
1.1 KiB
Nix
{ lib, ... }:
|
|
{
|
|
name = "nvf";
|
|
homepage = "https://github.com/NotAShelf/nvf";
|
|
maintainers = [ lib.maintainers.butzist ];
|
|
description = ''
|
|
This module themes [Neovim] using the options provided by [nvf].
|
|
|
|
> [!IMPORTANT]
|
|
> This module will have no effect unless the desired nvf module is properly
|
|
> [installed](https://notashelf.github.io/nvf/index.xhtml#ch-installation)
|
|
> and
|
|
> [imported](https://notashelf.github.io/nvf/index.xhtml#ch-module-installation)
|
|
> into your configuration.
|
|
>
|
|
> Ensure you are configuring this module on the same platform (NixOS, Home
|
|
> Manager, Darwin) as where you installed nvf.
|
|
|
|
### Related modules
|
|
|
|
<!-- If updating this section, make sure to update it on the linked pages too. -->
|
|
|
|
- [Vim](vim.md): themes Vim using the standard Home Manager options.
|
|
- [Neovim](neovim.md): themes Neovim using the standard Home Manager options.
|
|
- [Nixvim](nixvim.md): themes Neovim using the options provided by [Nixvim].
|
|
|
|
[Neovim]: https://neovim.io
|
|
[Nixvim]: https://github.com/nix-community/nixvim#readme
|
|
[nvf]: https://github.com/NotAShelf/nvf#readme
|
|
'';
|
|
}
|