Update colorschemes.lua

This commit is contained in:
Arkaprabha Chakraborty 2023-03-07 23:14:30 +05:30 committed by GitHub
parent 1e019940e6
commit 25d8d8c208
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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