Skip to content

Commit 3c2900e

Browse files
changed theme
1 parent a7c8921 commit 3c2900e

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

init.lua

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -908,17 +908,22 @@ require('lazy').setup({
908908
},
909909

910910
{ -- You can easily change to a different colorscheme.
911-
-- Change the name of the colorscheme plugin below, and then
912-
-- change the command in the config to whatever the name of that colorscheme is.
913-
--
914911
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
912+
{
913+
'AlexvZyl/nordic.nvim',
914+
lazy = false,
915+
priority = 1000,
916+
config = function()
917+
require('nordic').load()
918+
end,
919+
},
915920
'folke/tokyonight.nvim',
916921
priority = 1000, -- Make sure to load this before all the other start plugins.
917922
init = function()
918923
-- Load the colorscheme here.
919924
-- Like many other themes, this one has different styles, and you could load
920925
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
921-
vim.cmd.colorscheme 'tokyonight-night'
926+
vim.cmd.colorscheme 'nordic'
922927

923928
-- You can configure highlights by doing something like:
924929
vim.cmd.hi 'Comment gui=none'

0 commit comments

Comments
 (0)