1
0
Fork 0

wezterm, nvim: back to the light theme

This commit is contained in:
Von Random 2024-02-14 19:31:09 +02:00
parent da93697ecf
commit 4349c4c0db
3 changed files with 15 additions and 15 deletions

View file

@ -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]]

View file

@ -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()

View file

@ -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()