16 lines
355 B
Nix
16 lines
355 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
nixvimInjections = true;
|
|
# For neorg formatting (italic/bold/etc) to work properly
|
|
# https://github.com/nvim-neorg/neorg/wiki/Dependencies#nvim-treesitter-plugin
|
|
settings.highlight.enable = lib.mkIf config.plugins.neorg.enable true;
|
|
};
|
|
};
|
|
}
|