2021-08-12 21:24:19 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.bat = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
config = {
|
|
|
|
theme = "TwoDark";
|
|
|
|
pager = "less -FR";
|
|
|
|
map-syntax = [ "*.jenkinsfile:Groovy" "*.props:Java Properties" ];
|
2023-11-23 00:16:58 +01:00
|
|
|
show-all = true;
|
|
|
|
|
|
|
|
# False boolean options should not appear in the config
|
|
|
|
lessopen = false;
|
2021-08-12 21:24:19 +02:00
|
|
|
};
|
|
|
|
|
2023-10-05 22:01:18 +02:00
|
|
|
themes.testtheme.src = pkgs.writeText "testtheme.tmTheme" ''
|
2021-08-12 21:24:19 +02:00
|
|
|
This is a test theme.
|
|
|
|
'';
|
2023-09-12 16:49:49 +02:00
|
|
|
|
2023-10-05 22:01:18 +02:00
|
|
|
syntaxes.testsyntax.src = pkgs.writeText "testsyntax.sublime-syntax" ''
|
2023-09-12 16:49:49 +02:00
|
|
|
This is a test syntax.
|
|
|
|
'';
|
2021-08-12 21:24:19 +02:00
|
|
|
};
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.bat = { };
|
2021-08-12 21:24:19 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/bat/config
|
|
|
|
assertFileContent home-files/.config/bat/config ${
|
|
|
|
pkgs.writeText "bat.expected" ''
|
|
|
|
--map-syntax='*.jenkinsfile:Groovy'
|
|
|
|
--map-syntax='*.props:Java Properties'
|
|
|
|
--pager='less -FR'
|
2024-09-08 09:55:05 +02:00
|
|
|
--theme=TwoDark
|
2023-11-23 00:16:58 +01:00
|
|
|
--show-all
|
2021-08-12 21:24:19 +02:00
|
|
|
''
|
|
|
|
}
|
|
|
|
|
|
|
|
assertFileExists home-files/.config/bat/themes/testtheme.tmTheme
|
|
|
|
assertFileContent home-files/.config/bat/themes/testtheme.tmTheme ${
|
|
|
|
pkgs.writeText "bat.expected" ''
|
|
|
|
This is a test theme.
|
|
|
|
''
|
|
|
|
}
|
2023-09-12 16:49:49 +02:00
|
|
|
|
|
|
|
assertFileExists home-files/.config/bat/syntaxes/testsyntax.sublime-syntax
|
|
|
|
assertFileContent home-files/.config/bat/syntaxes/testsyntax.sublime-syntax ${
|
|
|
|
pkgs.writeText "bat.expected" ''
|
|
|
|
This is a test syntax.
|
|
|
|
''
|
|
|
|
}
|
2021-08-12 21:24:19 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|