add more themes

This commit is contained in:
hwu 2025-09-02 23:36:22 -04:00
parent 58a73588b6
commit b4c5efab11
2 changed files with 42 additions and 10 deletions

View File

@ -20,21 +20,40 @@ return {
{ '<c-\\>', '<cmd><C-U>TmuxNavigatePrevious<cr>' }, { '<c-\\>', '<cmd><C-U>TmuxNavigatePrevious<cr>' },
}, },
}, },
-- themes
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
{ {
'nxstynate/oneDarkPro.nvim', 'navarasu/onedark.nvim',
priority = 1000, priority = 1000, -- make sure to load this before all the other start plugins
opts = { config = function()
palette_overrides = { require('onedark').setup {
dark0 = '#282c34', style = 'darker',
}, }
}, -- Enable theme
init = function() require('onedark').load()
vim.cmd.colorscheme 'oneDarkPro'
end, end,
}, },
{ 'marko-cerovac/material.nvim', priority = 1000 },
-- {
-- 'nxstynate/oneDarkPro.nvim',
-- priority = 1000,
-- opts = {
-- palette_overrides = {
-- dark0 = '#282c34',
-- },
-- },
-- init = function()
-- vim.cmd.colorscheme 'oneDarkPro'
-- end,
-- },
{ 'NvChad/nvim-colorizer.lua', opts = { { 'NvChad/nvim-colorizer.lua', opts = {
user_default_options = { user_default_options = {
css = true, css = true,
}, },
} }, } },
{
'scottmckendry/cyberdream.nvim',
lazy = false,
priority = 1000,
},
} }

View File

@ -13,7 +13,20 @@ return {
enabled = true, enabled = true,
timeout = 3000, timeout = 3000,
}, },
picker = { enabled = true }, picker = {
enabled = true,
sources = {
explorer = {
win = {
list = {
keys = {
['O'] = 'toggle_maximize',
},
},
},
},
},
},
quickfile = { enabled = true }, quickfile = { enabled = true },
scope = { enabled = true }, scope = { enabled = true },
scroll = { enabled = false }, scroll = { enabled = false },