From 8b282f0aa6943b95f4c37d99fe41fe6ead186d79 Mon Sep 17 00:00:00 2001 From: Von Random Date: Mon, 16 Mar 2026 12:54:45 +0200 Subject: [PATCH] nvim: light theme --- dot_config/nvim/lua/plugins.lua | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dot_config/nvim/lua/plugins.lua b/dot_config/nvim/lua/plugins.lua index 982537b..6910539 100644 --- a/dot_config/nvim/lua/plugins.lua +++ b/dot_config/nvim/lua/plugins.lua @@ -7,8 +7,9 @@ vim.opt.rtp:prepend(lazypath) --[[ plugins list ]] require('lazy').setup { - {'ellisonleao/gruvbox.nvim', priority = 1000, config = true}, + -- {'ellisonleao/gruvbox.nvim', priority = 1000, config = true}, {'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}}, + 'EdenEast/nightfox.nvim', 'smoka7/hop.nvim', 'kdheepak/lazygit.nvim', 'nvim-telescope/telescope.nvim', @@ -24,10 +25,10 @@ require('lazy').setup { --[[ plugin configs and maps ]] require('hop').setup() require('gitsigns').setup() -require('gruvbox').setup { - italic = {strings = false}, - terminal_colors = true -} +-- require('gruvbox').setup { +-- italic = {strings = false}, +-- terminal_colors = true +-- } require('nvim-treesitter.configs').setup { highlight = { enable = true @@ -50,6 +51,6 @@ map('n', ',', 'Telescope buffers') --[[ theme ]] vim.o.termguicolors = true -vim.o.bg = 'dark' +vim.o.bg = 'light' -vim.cmd [[colorscheme gruvbox]] +vim.cmd [[colorscheme dawnfox]]