feat: dynamic theming attempt
This commit is contained in:
parent
18c51ecc13
commit
2757c649b9
18 changed files with 120 additions and 30 deletions
modules/overlays
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
nixpkgs.overlays = [
|
||||
(import ./tweakSources.nix)
|
||||
(import ./myPackages.nix)
|
||||
(import ./npm.nix)
|
||||
|
||||
# I hope this works (spoiler: it did not)
|
||||
|
|
|
@ -59,10 +59,11 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
githubNvimTheme = githubNvimTheme;
|
||||
|
||||
# Vim plugins
|
||||
myVimPlugins = {
|
||||
githubNvimTheme = githubNvimTheme;
|
||||
|
||||
telescope-file-browser-nvim =
|
||||
plugin "file_browser" telescope-file-browser-nvim;
|
||||
|
||||
|
|
5
modules/overlays/myPackages.nix
Normal file
5
modules/overlays/myPackages.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
self: super:
|
||||
with self; {
|
||||
myHelpers = self.callPackage (import ../helpers.nix) { };
|
||||
myThemes = self.callPackage (import ../themes/themes.nix) { };
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue