feat(nixvim): set moonfly as the new colorscheme

This commit is contained in:
lightly-toasted 2025-08-05 15:00:02 +09:00
parent ae0d590f53
commit 7dba818aca
2 changed files with 4 additions and 2 deletions

View file

@ -2,7 +2,9 @@
programs.nixvim = { programs.nixvim = {
enable = true; enable = true;
defaultEditor = true; defaultEditor = true;
colorschemes.ayu.enable = true; colorschemes.moonfly = {
enable = true;
};
opts = { opts = {
number = true; number = true;
relativenumber = true; relativenumber = true;

View file

@ -4,7 +4,7 @@
settings = { settings = {
options = { options = {
icons_enabled = true; icons_enabled = true;
theme = "ayu_dark"; theme = "moonfly";
}; };
}; };
}; };