DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

377b0f4065291251cbd189fa0bd586d939af75c8 — Jonni Liljamo 28 days ago 7e20cd0
feat(telescope): theming changes
2 files changed, 11 insertions(+), 1 deletions(-)

M config/colourscheme.nix
M config/plugins/telescope.nix
M config/colourscheme.nix => config/colourscheme.nix +10 -1
@@ 14,7 14,9 @@
  # 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({
    local everforest = require('everforest')

    everforest.setup({
      background = 'hard',
      italics = true,
      on_highlights = function(hl, palette)


@@ 23,6 25,13 @@
      end,
    })
    vim.o.background = "light"

    local colours = require("everforest.colours")
    local palette = colours.generate_palette(everforest.config, vim.o.background)

    -- set telescope colours
    vim.api.nvim_set_hl(0, "TelescopeResultsBorder", { bg = palette.bg_green })
    vim.api.nvim_set_hl(0, "TelescopePreviewBorder", { bg = palette.bg_red })
  '';
  colorscheme = "everforest";
}

M config/plugins/telescope.nix => config/plugins/telescope.nix +1 -0
@@ 15,6 15,7 @@
    };
    settings = {
      defaults = {
        borderchars = [" " " " " " " " " " " " " " " "];
        file_ignore_patterns = [
          "%.lock"
        ];