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 } },