light themes

This commit is contained in:
Ben Kyd
2026-03-11 14:35:16 +00:00
parent e8994b77f1
commit f1ce25adf0
3 changed files with 16 additions and 24 deletions

View File

@@ -3,10 +3,6 @@ CACHE_PATH = vim.fn.stdpath('cache')
vim.cmd('source ~/.vimrc')
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "NONE" })
vim.api.nvim_set_hl(0, "FloatBorder", { bg = "NONE" })
vim.api.nvim_set_hl(0, "CmpItemMenu", { bg = "NONE" })
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({

View File

@@ -5,22 +5,27 @@ return {
priority = 1000,
config = function()
require('kanagawa').setup({
transparent = true,
undercurl = true,
commentStyle = { italic = true },
keywordsStyle = { italic = true },
statementStyle = { bold = true },
overrides = function(colors)
return {
Normal = { bg = 'none' },
NormalFloat = { bg = 'none' },
FloatBorder = { fg = colors.palette.sumiInk4, bg = 'none' },
CursorLine = { bg = colors.palette.sumiInk1 },
CursorLineNr = { fg = colors.palette.sumiInk6, bold = true },
}
end
})
vim.cmd('colorscheme kanagawa')
-- Transparent bg so catppuccin mocha terminal bg shows through
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
vim.keymap.set('n', '<leader>tt', function()
if vim.o.background == 'dark' then
vim.o.background = 'light'
vim.cmd('colorscheme kanagawa-lotus')
else
vim.o.background = 'dark'
vim.cmd('colorscheme kanagawa')
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
end
end, { desc = 'Toggle light/dark theme' })
end
},
-- QUALITY OF LIFE INTEGRATIONS
@@ -55,15 +60,6 @@ return {
})
end
},
{
'miversen33/sunglasses.nvim',
config = function()
require('sunglasses').setup({
filter_type = "SHADE",
filter_percent = .20
})
end
},
{
'lewis6991/gitsigns.nvim',
config = function()

View File

@@ -59,7 +59,7 @@ set splitbelow
set splitright
set completeopt=menu,menuone,preview,noinsert,noselect
set guicursor=a:block,i:ver20,v-r:hor20
set guicursor=a:block-Cursor,i:ver20-Cursor,v-r:hor20-Cursor
" The epico quickfix list
packadd cfilter