1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-12-23 18:29:47 +01:00

kakoune: prepend extra configuration with newline (#870)

Fixes #869
This commit is contained in:
Robert Helgesson 2019-10-23 13:39:52 +02:00 committed by Matthieu Coudron
parent 410f573226
commit 1b987952b5

View file

@ -540,6 +540,7 @@ let
in
pkgs.writeText "kakrc" (
optionalString (cfg.config != null) cfgStr
+ "\n"
+ cfg.extraConfig
);