diff options
author | mhsn <mail@mhsn.net> | 2025-02-25 12:01:35 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-02-25 12:01:35 +0000 |
commit | f143f734e71d260ad0139d279d4dd6c747c28418 (patch) | |
tree | 207d16cf8a89dc6f6160f8cf50f0737468603d23 | |
parent | 957a8515e4de0962edf95fc9206505b51c9dd983 (diff) | |
download | nvim-f143f734e71d260ad0139d279d4dd6c747c28418.tar.gz nvim-f143f734e71d260ad0139d279d4dd6c747c28418.zip |
change color theme from gruvbox-material to everforest
-rw-r--r-- | lua/plugins/colors.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lua/plugins/colors.lua b/lua/plugins/colors.lua index 1c44296..a75555e 100644 --- a/lua/plugins/colors.lua +++ b/lua/plugins/colors.lua @@ -1,10 +1,12 @@ return { { - "sainnhe/gruvbox-material", + "sainnhe/everforest", lazy = false, priority = 1000, config = function() - vim.cmd([[colorscheme gruvbox-material]]) + vim.g.everforest_background = "hard" + vim.g.everforest_disable_italic_comment = true + vim.cmd.colorscheme("everforest") end, }, } |