1
Fork 0

feat: dynamic theming attempt

This commit is contained in:
Matei Adriel 2022-03-10 21:59:18 +02:00
parent 18c51ecc13
commit 2757c649b9
18 changed files with 120 additions and 30 deletions

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: {
nixpkgs.overlays = [
(import ./tweakSources.nix)
(import ./myPackages.nix)
(import ./npm.nix)
# I hope this works (spoiler: it did not)

View file

@ -59,10 +59,11 @@ in
};
};
githubNvimTheme = githubNvimTheme;
# Vim plugins
myVimPlugins = {
githubNvimTheme = githubNvimTheme;
telescope-file-browser-nvim =
plugin "file_browser" telescope-file-browser-nvim;

View file

@ -0,0 +1,5 @@
self: super:
with self; {
myHelpers = self.callPackage (import ../helpers.nix) { };
myThemes = self.callPackage (import ../themes/themes.nix) { };
}