added startify option

This commit is contained in:
Ellis Rahhal 2025-02-16 14:22:27 -08:00
parent a68c97c516
commit 50b27ae47f
2 changed files with 8 additions and 1 deletions

View file

@ -2,5 +2,11 @@
{
options.nixvim-config = {
enable = lib.mkEnableOption "Enable nixvim-config";
enable-startify = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable startify";
};
};
}

View file

@ -1,4 +1,4 @@
{ ... }:
{ config, ... }:
{
imports = [
# ./blink-cmp.nix
@ -55,6 +55,7 @@
oil.enable = true;
rainbow-delimiters.enable = true;
sleuth.enable = true;
startify.enable = config.nixvim-config.enable-startify;
treesitter.enable = false;
tmux-navigator.enable = true;
trouble.enable = true;