From fa8ebeedc7b1d2b328d298da922d80b74fe99058 Mon Sep 17 00:00:00 2001 From: gradkins Date: Fri, 27 Jun 2025 09:54:25 -0400 Subject: [PATCH] Changed default theme to Kanagawa --- init.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index e1055b20..645c4886 100644 --- a/init.lua +++ b/init.lua @@ -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 } },