feat: add nord theme

added nord theme from github.com/gbprod/nord.nvim
fixed a typo
This commit is contained in:
tomasguinzburg 2025-01-17 09:54:51 +01:00
commit ae3340f2d1
5 changed files with 36 additions and 1 deletions

View file

@ -4,4 +4,5 @@
"catppuccin"
"oxocarbon"
"gruvbox"
"nord"
]

View file

@ -177,4 +177,14 @@ in {
'';
styles = ["main" "moon" "dawn"];
};
nord = {
setup = {transparent ? false, ...}: ''
require("nord").setup({
transparent = ${boolToString transparent},
search = "vscode", -- [vim|vscode]
})
vim.cmd.colorscheme("nord")
'';
};
}