nix-config/modules/nixvim/colorscheme.nix
Dennis 6543d4a7f3 feat: nixvim config
currently only for dnsc-air. can simply be imported in other hosts
2026-02-04 19:03:10 +01:00

13 lines
370 B
Nix

{ ... }:
{
colorscheme = "winterly";
# Make palette available to this module but
# also for other configuration (e.g. lualine)
extraFiles."lua/dnsc/palette.lua".source = ./extraFiles/palette.lua;
# Set custorscheme in neovims runtimepath so that neovim
# discovers it automatically
extraFiles."colors/winterly.lua".source = ./extraFiles/winterly.lua;
}