diff --git a/lua/colorschemes.lua b/lua/colorschemes.lua index cb4b4de..b064828 100644 --- a/lua/colorschemes.lua +++ b/lua/colorschemes.lua @@ -131,5 +131,12 @@ if colorscheme == "gruvbox" then end if colorscheme == "nord" then + local ok, nord = pcall(require, "nord") + if not ok then + return + end + + nord.setup({}) + vim.cmd([[colorscheme nord]]) end