diff --git a/lazy-lock.json b/lazy-lock.json index c7709e5..19b3431 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -14,6 +14,7 @@ "dressing.nvim": { "branch": "master", "commit": "4436d6f41e2f6b8ada57588acd1a9f8b3d21453c" }, "friendly-snippets": { "branch": "main", "commit": "046e4d3491baf664e0eef5231d28beb49333578b" }, "gitsigns.nvim": { "branch": "main", "commit": "2c6f96dda47e55fa07052ce2e2141e8367cbaaf2" }, + "gruvbox.nvim": { "branch": "main", "commit": "7a5c7ace3ac169b2898a4c7d8abec42cf9e18003" }, "impatient.nvim": { "branch": "main", "commit": "b842e16ecc1a700f62adb9802f8355b99b52a5a6" }, "indent-blankline.nvim": { "branch": "master", "commit": "db7cbcb40cc00fc5d6074d7569fb37197705e7f6" }, "indent-o-matic": { "branch": "master", "commit": "749b7cbae2d52aa1f65b6a2cd7b879a0b52ac3a1" }, diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 7751aa8..783b99b 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -21,6 +21,29 @@ return { require("onedark").load() end, }, + { + "ellisonleao/gruvbox.nvim", + init = function() + require("gruvbox").setup({ + undercurl = true, + underline = true, + bold = true, + italic = true, + strikethrough = true, + invert_selection = false, + invert_signs = false, + invert_tabline = false, + invert_intend_guides = false, + inverse = true, -- invert background for search, diffs, statuslines and errors + contrast = "", -- can be "hard", "soft" or empty string + palette_overrides = {}, + overrides = {}, + dim_inactive = false, + transparent_mode = false, + }) + vim.o.background = "dark" -- or "light" for light mode + end, + }, -- dashboard { "goolord/alpha-nvim", diff --git a/lua/user/colorscheme.lua b/lua/user/colorscheme.lua index 70285e9..47e1f19 100644 --- a/lua/user/colorscheme.lua +++ b/lua/user/colorscheme.lua @@ -1,4 +1,5 @@ -- local colorscheme = "tokyonight-night" +-- local colorscheme = "gruvbox" local colorscheme = "onedark" local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)