Skip to content

Commit

Permalink
nixvim: wrap code at 80 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
trueNAHO authored Jun 6, 2024
1 parent 71c7df9 commit 2950c7a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions modules/nixvim/nixvim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@
};

config = {
programs = lib.optionalAttrs (options.programs ? nixvim) (lib.mkIf config.stylix.targets.nixvim.enable {
nixvim = config.stylix.targets.nixvim.config;
});
programs =
lib.optionalAttrs
(options.programs ? nixvim)
(lib.mkIf config.stylix.targets.nixvim.enable {
nixvim = config.stylix.targets.nixvim.config;
});

stylix.targets.nixvim.config = {
colorschemes.base16 = {
Expand Down

0 comments on commit 2950c7a

Please sign in to comment.