From ccbffa4c324ba1fa0496cd3cebf0c66fe0c0d285 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Wed, 17 Apr 2024 18:29:46 +0100 Subject: [PATCH] nvim: use OG gruvbox --- nvim/lua/thomas/core/options.lua | 2 +- nvim/lua/thomas/plugins/lualine.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/lua/thomas/core/options.lua b/nvim/lua/thomas/core/options.lua index 2792839..6c5b5e1 100644 --- a/nvim/lua/thomas/core/options.lua +++ b/nvim/lua/thomas/core/options.lua @@ -26,4 +26,4 @@ opt.backspace = "indent,eol,start" opt.conceallevel = 0 -- vim.notify = require("notify") -- vim.g.gruvbox_material_background = "medium" -vim.g.gruvbox_material_enable_bold = 1 +vim.g.gruvbox_material_enable_bold = 0 diff --git a/nvim/lua/thomas/plugins/lualine.lua b/nvim/lua/thomas/plugins/lualine.lua index 8f1ced6..fdd3102 100644 --- a/nvim/lua/thomas/plugins/lualine.lua +++ b/nvim/lua/thomas/plugins/lualine.lua @@ -9,7 +9,7 @@ end lualine.setup({ options = { - theme = "gruvbox-material", + theme = "gruvbox", component_separators = { left = "|", right = "|" }, section_separators = { left = " ", right = " " }, },