8 lines
255 B
Nix
8 lines
255 B
Nix
# Import syntax themes
|
|
|
|
{ lib, theme, pkgs, ... }: [
|
|
(import ./haskell.nix { inherit lib theme pkgs; })
|
|
(import ./rust.nix { inherit lib theme pkgs; })
|
|
(import ./nix.nix { inherit lib theme pkgs; })
|
|
(import ./common.nix { inherit lib theme pkgs; })
|
|
]
|