From 7dba818acae5b5ea7cd81bd5cedfabffd0905d23 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Tue, 5 Aug 2025 15:00:02 +0900 Subject: [PATCH] feat(nixvim): set moonfly as the new colorscheme --- home/toast/programs/nixvim/default.nix | 4 +++- home/toast/programs/nixvim/plugins/lualine.nix | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/home/toast/programs/nixvim/default.nix b/home/toast/programs/nixvim/default.nix index 0908111..17cb846 100644 --- a/home/toast/programs/nixvim/default.nix +++ b/home/toast/programs/nixvim/default.nix @@ -2,7 +2,9 @@ programs.nixvim = { enable = true; defaultEditor = true; - colorschemes.ayu.enable = true; + colorschemes.moonfly = { + enable = true; + }; opts = { number = true; relativenumber = true; diff --git a/home/toast/programs/nixvim/plugins/lualine.nix b/home/toast/programs/nixvim/plugins/lualine.nix index 6a5176a..df99c0e 100644 --- a/home/toast/programs/nixvim/plugins/lualine.nix +++ b/home/toast/programs/nixvim/plugins/lualine.nix @@ -4,7 +4,7 @@ settings = { options = { icons_enabled = true; - theme = "ayu_dark"; + theme = "moonfly"; }; }; };