mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
kakoune: prepend extra configuration with newline (#870)
Fixes #869
(cherry picked from commit 1b987952b5
)
This commit is contained in:
parent
af2303526d
commit
b646623a39
1 changed files with 1 additions and 0 deletions
|
@ -540,6 +540,7 @@ let
|
||||||
in
|
in
|
||||||
pkgs.writeText "kakrc" (
|
pkgs.writeText "kakrc" (
|
||||||
optionalString (cfg.config != null) cfgStr
|
optionalString (cfg.config != null) cfgStr
|
||||||
|
+ "\n"
|
||||||
+ cfg.extraConfig
|
+ cfg.extraConfig
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue