From 8baae5ecf373a6a8fbe6d118c45d70ec8dbb9978 Mon Sep 17 00:00:00 2001 From: Alexander Kabolov Date: Sat, 25 Jan 2025 18:49:21 +0100 Subject: [PATCH] nord theme --- init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 9df906f6..1a77d7b5 100644 --- a/init.lua +++ b/init.lua @@ -770,13 +770,20 @@ 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' + -- vim.cmd.colorscheme 'tokyonight' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' end, }, + { + 'shaunsingh/nord.nvim', + init = function() + vim.cmd.colorscheme 'nord' + end, + }, + -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },