mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
2917ef23b3
- Enable use-plugins test. - Stub out `kakoune-unwrapped` to avoid unnecessary downloads. - Unwrap unnecessary `config` attributes.
25 lines
514 B
Nix
25 lines
514 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ./stubs.nix ];
|
|
|
|
programs.kakoune = {
|
|
enable = true;
|
|
config.showWhitespace = {
|
|
enable = true;
|
|
lineFeed = "1";
|
|
space = "2";
|
|
nonBreakingSpace = "3";
|
|
tab = "4";
|
|
tabStop = "5";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/kak/kakrc
|
|
assertFileContains home-files/.config/kak/kakrc \
|
|
"add-highlighter global/ show-whitespaces -tab '4' -tabpad '5' -spc '2' -nbsp '3' -lf '1'"
|
|
'';
|
|
}
|