Skip to content

Commit fa8ebee

Browse files
committed
Changed default theme to Kanagawa
1 parent 00c47ab commit fa8ebee

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

init.lua

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,10 +914,21 @@ require('lazy').setup({
914914
-- Load the colorscheme here.
915915
-- Like many other themes, this one has different styles, and you could load
916916
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
917-
vim.cmd.colorscheme 'tokyonight-night'
917+
--vim.cmd.colorscheme 'tokyonight-night'
918918
end,
919919
},
920920
{ 'rose-pine/neovim', name = 'rose-pine' },
921+
{
922+
'rebelot/kanagawa.nvim',
923+
priority = 1000, -- Make sure to load this before all the other start plugins.
924+
config = function()
925+
require('kanagawa').setup {}
926+
vim.cmd.colorscheme 'kanagawa-wave'
927+
end,
928+
},
929+
{ 'Mofiqul/dracula.nvim' },
930+
{ 'AlexvZyl/nordic.nvim' },
931+
{ 'ribru17/bamboo.nvim' },
921932

922933
-- Highlight todo, notes, etc in comments
923934
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },

0 commit comments

Comments
 (0)