kakoune: prepend extra configuration with newline (#870)

Fixes #869

(cherry picked from commit 1b987952b5)
This commit is contained in:
Robert Helgesson 2019-10-23 13:39:52 +02:00
parent af2303526d
commit b646623a39
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

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