diff --git a/core/neovim/options.nix b/core/neovim/options.nix index c2b5916..67b49b6 100644 --- a/core/neovim/options.nix +++ b/core/neovim/options.nix @@ -1,6 +1,6 @@ { user, ... }: { home-manager.users.${user}.programs.nixvim = { - options = { + opts = { # Numbers relativenumber = true; number = true; diff --git a/core/neovim/plugins.nix b/core/neovim/plugins.nix index 516d805..0a8d748 100644 --- a/core/neovim/plugins.nix +++ b/core/neovim/plugins.nix @@ -12,7 +12,7 @@ in { ]; # Comments - plugins.comment-nvim.enable = true; + plugins.comment.enable = true; highlightOverride = with palette; { "DiagnosticInfo" = mkStandout sky; "DiagnosticHint" = mkStandout violet;