mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-18 00:09:13 +02:00
parent
d8a86e9b3f
commit
c73bef16ab
61 changed files with 112 additions and 263 deletions
|
@ -2,7 +2,7 @@
|
|||
with lib;
|
||||
let
|
||||
cfg = config.plugins.lualine;
|
||||
helpers = import ../helpers.nix { lib = lib; };
|
||||
helpers = import ../helpers.nix { inherit lib; };
|
||||
separators = mkOption {
|
||||
type = types.nullOr (types.submodule {
|
||||
options = {
|
||||
|
@ -58,11 +58,7 @@ in
|
|||
plugins.lualine = {
|
||||
enable = mkEnableOption "lualine";
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.vimPlugins.lualine-nvim;
|
||||
description = "Plugin to use for lualine";
|
||||
};
|
||||
package = helpers.mkPackageOption "lualine" pkgs.vimPlugins.lualine-nvim;
|
||||
|
||||
theme = mkOption {
|
||||
default = config.colorscheme;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue