change theme

This commit is contained in:
Oliver Hartmann 2025-06-03 21:14:53 +02:00
parent 3f05e24237
commit 9b4a1f350b
5 changed files with 6 additions and 16 deletions

View File

@ -147,7 +147,3 @@ vim.diagnostic.config({
update_in_insert = false, -- Don't update diagnostics in insert mode update_in_insert = false, -- Don't update diagnostics in insert mode
severity_sort = true, -- Sort diagnostics by severity severity_sort = true, -- Sort diagnostics by severity
}) })
-- Window border for floating windows
require('bamboo').load()

View File

@ -6,7 +6,6 @@ return {
}, },
config = function() config = function()
vim.opt.laststatus = 3 vim.opt.laststatus = 3
local colors = require('bamboo.palette')
require('lualine').setup({ require('lualine').setup({
options = { options = {
theme = 'auto', theme = 'auto',
@ -30,18 +29,15 @@ return {
lualine_c = { lualine_c = {
{ {
'getcwd', 'getcwd',
color = { fg = colors.vulgaris.orange, gui = 'bold' },
}, },
{ {
'filename', 'filename',
path = 1, path = 1,
file_status = true, file_status = true,
color = { fg = colors.vulgaris.light_blue, gui = 'bold' },
}, },
{ {
function() return require('nvim-navic').get_location() end, function() return require('nvim-navic').get_location() end,
cond = function() return package.loaded['nvim-navic'] and require('nvim-navic').is_available() end, cond = function() return package.loaded['nvim-navic'] and require('nvim-navic').is_available() end,
color = { fg = colors.vulgaris.blue },
}, },
}, },
lualine_y = { lualine_y = {
@ -66,7 +62,6 @@ return {
path = 0, path = 0,
file_status = true, file_status = true,
separator = { left = '', right = '' }, separator = { left = '', right = '' },
color = { fg = '#000000', bg = '#ff9966', gui = 'bold' },
}, },
}, },
lualine_b = { lualine_b = {
@ -95,7 +90,6 @@ return {
path = 0, path = 0,
file_status = true, file_status = true,
separator = { left = '', right = '' }, separator = { left = '', right = '' },
color = { fg = '#000000', bg = '#8fb573' },
}, },
}, },
lualine_b = { lualine_b = {
@ -117,7 +111,7 @@ return {
mode = 2, mode = 2,
tabs_color = { tabs_color = {
-- Same values as the general color option can be used here. -- Same values as the general color option can be used here.
active = { bg = 'orange', fg = 'black' }, active = { bg = 'yellow', fg = 'black' },
inactive = { bg = 'grey' }, inactive = { bg = 'grey' },
}, },
}, },

View File

@ -18,7 +18,6 @@ return {
}, },
indent = { indent = {
indent = { indent = {
hl = 'CmpItemKindNull',
only_scope = false, only_scope = false,
only_current = false, only_current = false,
}, },

View File

@ -1,7 +1,7 @@
return { return {
'ribru17/bamboo.nvim', 'ribru17/bamboo.nvim',
lazy = true, lazy = true,
priority = 1000, -- priority = 1000,
config = function() config = function()
local colors = require('bamboo.palette') local colors = require('bamboo.palette')
require('bamboo').setup({ require('bamboo').setup({
@ -78,5 +78,5 @@ return {
}) })
require('bamboo').load() require('bamboo').load()
end, end,
enabled = true, enabled = false,
} }

View File

@ -1,6 +1,6 @@
return { return {
'rebelot/kanagawa.nvim', 'rebelot/kanagawa.nvim',
lazy = true, lazy = false,
config = function() config = function()
require('kanagawa').setup({ require('kanagawa').setup({
compile = false, -- enable compiling the colorscheme compile = false, -- enable compiling the colorscheme
@ -23,7 +23,7 @@ return {
['@lsp.mod.readonly'] = { bold = true }, ['@lsp.mod.readonly'] = { bold = true },
['@lsp.mod.static'] = { italic = true }, ['@lsp.mod.static'] = { italic = true },
['LspReferenceRead'] = { bg = colors.palette.lotusGreen, fg = colors.palette.dragonBlack0 }, ['LspReferenceRead'] = { bg = colors.palette.lotusGreen, fg = colors.palette.dragonBlack0 },
['LspReferenceWrite'] = { bg = colors.palette.lotusRed, fg = colors.palette.fujiWhite }, ['LspReferenceWrite'] = { bg = colors.palette.samuraiRed, fg = colors.palette.dragonBlack0 },
} }
end, end,
theme = 'wave', -- Load "wave" theme when 'background' option is not set theme = 'wave', -- Load "wave" theme when 'background' option is not set
@ -33,6 +33,7 @@ return {
light = 'lotus', light = 'lotus',
}, },
}) })
vim.cmd('colorscheme kanagawa')
end, end,
enabled = true, enabled = true,
} }