26 lines
479 B
Nix
26 lines
479 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
(inputs.nvf.lib.neovimConfiguration {
|
|
pkgs = pkgs.unstable;
|
|
modules = [
|
|
(import ./config.nix)
|
|
# {
|
|
# config.vim = {
|
|
# # Enable custom theming options
|
|
# theme.enable = true;
|
|
#
|
|
# # Enable Treesitter
|
|
# treesitter.enable = true;
|
|
#
|
|
# # Other options will go here. Refer to the config
|
|
# # reference in Appendix B of the nvf manual.
|
|
# # ...
|
|
# };
|
|
# }
|
|
];
|
|
})
|
|
.neovim
|