summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVon Random <von@vdrandom.org>2024-02-14 19:31:09 +0200
committerVon Random <von@vdrandom.org>2024-02-14 19:31:09 +0200
commit4349c4c0db4ebd20a36f854a0232ce369f28c888 (patch)
tree89d57214b4fcc692f9bd89a00a1e81799fab18c5
parentda93697ecface13c8bacda0ee3cbcd22e47130c2 (diff)
wezterm, nvim: back to the light theme
-rw-r--r--cli/.config/nvim/lua/plugins.lua6
-rw-r--r--gui/.config/wezterm/overrides.lua12
-rw-r--r--gui/.config/wezterm/wezterm.lua12
3 files changed, 15 insertions, 15 deletions
diff --git a/cli/.config/nvim/lua/plugins.lua b/cli/.config/nvim/lua/plugins.lua
index e3d1ff0..2fcd8a4 100644
--- a/cli/.config/nvim/lua/plugins.lua
+++ b/cli/.config/nvim/lua/plugins.lua
@@ -30,7 +30,7 @@ require('nvim-treesitter.configs').setup {
require('lualine').setup {
options = {
icons_enabled = false,
- theme = 'gruvbox',
+ theme = 'solarized',
component_separators = { left = "\u{2022}", right = "\u{2022}"},
section_separators = { left = nil, right = nil},
}
@@ -49,6 +49,6 @@ vim.g.solarized_extra_hi_groups = 1
vim.g.gruvbox_plugin_hi_groups = 1
vim.g.gruvbox_filetype_hi_groups = 1
vim.o.termguicolors = true
-vim.o.bg = 'dark'
+vim.o.bg = 'light'
-vim.cmd [[colorscheme gruvbox8]]
+vim.cmd [[colorscheme solarized8]]
diff --git a/gui/.config/wezterm/overrides.lua b/gui/.config/wezterm/overrides.lua
index 3aff90e..3f553fe 100644
--- a/gui/.config/wezterm/overrides.lua
+++ b/gui/.config/wezterm/overrides.lua
@@ -4,12 +4,12 @@ local fn = require('functions')
local current = {}
-- colors
-local color_scheme = 'Solarized Light (Gogh)'
-local tab_fg = '#657b83'
-local tab_bg = '#eee8d5'
-local tab_bg_active = '#fdf6e3'
-local cursor_fg = '#fdf6e3'
-local cursor_bg = '#cb4b16'
+local color_scheme = 'GruvboxDark'
+local tab_fg = '#ebdbb2'
+local tab_bg = '#504945'
+local tab_bg_active = '#282828'
+local cursor_fg = '#ebdbb2'
+local cursor_bg = '#d65d0e'
-- fonts
local fonts = wt.config_builder()
diff --git a/gui/.config/wezterm/wezterm.lua b/gui/.config/wezterm/wezterm.lua
index 2e4663f..e520cc2 100644
--- a/gui/.config/wezterm/wezterm.lua
+++ b/gui/.config/wezterm/wezterm.lua
@@ -3,12 +3,12 @@ local kb = require('keybinds')
local fn = require('functions')
-- colors
-local color_scheme = 'GruvboxDark'
-local tab_fg = '#ebdbb2'
-local tab_bg = '#504945'
-local tab_bg_active = '#282828'
-local cursor_fg = '#ebdbb2'
-local cursor_bg = '#d65d0e'
+local color_scheme = 'Solarized Light (Gogh)'
+local tab_fg = '#657b83'
+local tab_bg = '#eee8d5'
+local tab_bg_active = '#fdf6e3'
+local cursor_fg = '#fdf6e3'
+local cursor_bg = '#cb4b16'
-- misc
local cfg = wt.config_builder()