DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: e16e8144f6f6d31fb53be5e3912e3ecdba2233f1 nvim-flake/config/colourscheme.nix -rw-r--r-- 820 bytes
e16e8144Jonni Liljamo feat(colourscheme): update everforest and override comment colours 11 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{pkgs, ...}: {
  extraPlugins = [
    (pkgs.vimUtils.buildVimPlugin {
      name = "everforest";
      src = pkgs.fetchFromGitHub {
        owner = "neanias";
        repo = "everforest-nvim";
        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"
  '';
  colorscheme = "everforest";
}