From 90c2d537177ac33ad836f8e56a1ca07594d84ea1 Mon Sep 17 00:00:00 2001 From: Von Random Date: Mon, 23 Mar 2026 16:28:02 +0200 Subject: [PATCH] ghostty, helix, nvim, vim: revert to dark themes --- dot_config/ghostty/config.tmpl | 2 +- dot_config/helix/config.toml | 2 +- dot_config/nvim/lua/plugins.lua | 15 +++++++-------- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/dot_config/ghostty/config.tmpl b/dot_config/ghostty/config.tmpl index 0a85e45..a7c5d87 100644 --- a/dot_config/ghostty/config.tmpl +++ b/dot_config/ghostty/config.tmpl @@ -1,4 +1,4 @@ -theme = Dawnfox +theme = Gruvbox Dark font-family = Maple Mono NL NF {{- if eq .chezmoi.os "darwin" }} font-size = 15 diff --git a/dot_config/helix/config.toml b/dot_config/helix/config.toml index 4d1f277..d9bf436 100644 --- a/dot_config/helix/config.toml +++ b/dot_config/helix/config.toml @@ -1,4 +1,4 @@ -theme = "rose_pine_dawn" +theme = "gruvbox" [editor.cursor-shape] normal = "block" diff --git a/dot_config/nvim/lua/plugins.lua b/dot_config/nvim/lua/plugins.lua index 6910539..982537b 100644 --- a/dot_config/nvim/lua/plugins.lua +++ b/dot_config/nvim/lua/plugins.lua @@ -7,9 +7,8 @@ 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', @@ -25,10 +24,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 @@ -51,6 +50,6 @@ map('n', ',', 'Telescope buffers') --[[ theme ]] vim.o.termguicolors = true -vim.o.bg = 'light' +vim.o.bg = 'dark' -vim.cmd [[colorscheme dawnfox]] +vim.cmd [[colorscheme gruvbox]]