summary refs log tree commit diff stats
path: root/.config/nvim/lua/plugins/everforest.lua
diff options
context:
space:
mode:
authorChristian Krinitsin <christian@krinitsin.xyz>2024-03-16 21:00:19 +0100
committerChristian Krinitsin <christian@krinitsin.xyz>2024-03-16 21:00:19 +0100
commitb8a4392c8754a56265701f97f4833b447efff29a (patch)
treec7a0f84d29ace7a215201311ebc02e1e8eb7f952 /.config/nvim/lua/plugins/everforest.lua
downloaddotfiles-b8a4392c8754a56265701f97f4833b447efff29a.tar.gz
dotfiles-b8a4392c8754a56265701f97f4833b447efff29a.zip
init
Diffstat (limited to '.config/nvim/lua/plugins/everforest.lua')
-rw-r--r--.config/nvim/lua/plugins/everforest.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/everforest.lua b/.config/nvim/lua/plugins/everforest.lua
new file mode 100644
index 0000000..9b0b58a
--- /dev/null
+++ b/.config/nvim/lua/plugins/everforest.lua
@@ -0,0 +1,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,
+    }
+
+}