added startify option
This commit is contained in:
parent
a68c97c516
commit
50b27ae47f
2 changed files with 8 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue