DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

e16e8144f6f6d31fb53be5e3912e3ecdba2233f1 — Jonni Liljamo 10 days ago 7d32f01
feat(colourscheme): update everforest and override comment colours
1 files changed, 8 insertions(+), 2 deletions(-)

M config/colourscheme.nix
M config/colourscheme.nix => config/colourscheme.nix +8 -2
@@ 5,16 5,22 @@
      src = pkgs.fetchFromGitHub {
        owner = "neanias";
        repo = "everforest-nvim";
        rev = "ed4ba26";
        hash = "sha256-kVn6rUc26PtoqzKW/MNuks85sTLYx1lEE/l+7W0bDfg=";
        rev = "135cc21";
        hash = "sha256-X+GaH76afaWmszGuLYf9VHP134jvmUCVSB7C7aiPSOs=";
      };
    })
  ];

  # https://github.com/neanias/everforest-nvim?tab=readme-ov-file#overriding-highlight-groups
  # https://github.com/neanias/everforest-nvim/blob/main/lua/everforest/highlights.lua
  extraConfigLua = ''
    require('everforest').setup({
      background = 'hard',
      italics = true,
      on_highlights = function(hl, palette)
        hl.Comment = { fg = palette.aqua }
        hl.SpecialComment = { fg = palette.aqua }
      end,
    })
    vim.o.background = "light"
  '';