1
0
Fork 0

nvim, wezterm: colors

This commit is contained in:
Von Random 2024-03-28 16:45:27 +02:00
parent add68f9720
commit 940196288b
4 changed files with 16 additions and 16 deletions

View file

@ -1,6 +1,6 @@
function prompt.bang
if ! string match -eq linux $TERM
prompt.add \n$bang_symbol\ black
prompt.add \n$bang_symbol\ brblack
else
prompt.add \n\#\ brred
end

View file

@ -30,7 +30,7 @@ require('nvim-treesitter.configs').setup {
require('lualine').setup {
options = {
icons_enabled = false,
theme = 'solarized',
theme = 'gruvbox',
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 = 'light'
vim.o.bg = 'dark'
vim.cmd [[colorscheme solarized8]]
vim.cmd [[colorscheme gruvbox8]]