sets up basic structure
This commit is contained in:
parent
a0e3d792a9
commit
2ac5d0321b
17 changed files with 1368 additions and 36 deletions
16
modules/neovim/colorscheme.nix
Normal file
16
modules/neovim/colorscheme.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ ... }:
|
||||
{
|
||||
flake.modules.homeManager.neovim-colorscheme = {
|
||||
programs.nixvim = {
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue