Changed default theme to Kanagawa

This commit is contained in:
gradkins 2025-06-27 09:54:25 -04:00
parent 00c47ab989
commit fa8ebeedc7
1 changed files with 12 additions and 1 deletions

View File

@ -914,10 +914,21 @@ require('lazy').setup({
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
--vim.cmd.colorscheme 'tokyonight-night'
end,
},
{ 'rose-pine/neovim', name = 'rose-pine' },
{
'rebelot/kanagawa.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
config = function()
require('kanagawa').setup {}
vim.cmd.colorscheme 'kanagawa-wave'
end,
},
{ 'Mofiqul/dracula.nvim' },
{ 'AlexvZyl/nordic.nvim' },
{ 'ribru17/bamboo.nvim' },
-- Highlight todo, notes, etc in comments
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },