index — dotfiles @ b8a4392c8754a56265701f97f4833b447efff29a

my dotfiles

.config/nvim/lua/plugins/everforest.lua (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
return {

    {
      "neanias/everforest-nvim",
      lazy = false, -- load during startup
      priority = 1000, -- load before all the other start plugins
      config = function()
        vim.cmd([[colorscheme everforest]]) -- set colortheme
      end,
    }

}