aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/kakoune/whitespace-highlighter-corner-cases.nix
blob: 142aaac8fe373f6f7ba15a20bfe70062bc8218a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    programs.kakoune = {
      enable = true;
      config.showWhitespace = {
        enable = true;
        lineFeed = ''"'';
        space = " ";
        nonBreakingSpace = "' '"; # backwards compat
        tab = "'";
        # tabStop = <default>
      };
    };

    nmt.script = ''
      assertFileExists home-files/.config/kak/kakrc
      assertFileContains home-files/.config/kak/kakrc \
        "add-highlighter global/ show-whitespaces -tab \"'\" -spc ' ' -nbsp ' ' -lf '\"'"
    '';
  };
}