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>' },
},
},
-- themes
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
{
'nxstynate/oneDarkPro.nvim',
priority = 1000,
opts = {
palette_overrides = {
dark0 = '#282c34',
},
},
init = function()
vim.cmd.colorscheme 'oneDarkPro'
'navarasu/onedark.nvim',
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('onedark').setup {
style = 'darker',
}
-- Enable theme
require('onedark').load()
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 = {
user_default_options = {
css = true,
},
} },
{
'scottmckendry/cyberdream.nvim',
lazy = false,
priority = 1000,
},
}

View File

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