blob: a7b627af77f93e637b8c5a8626d68ec1bd5d035c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ pkgs, ... }:
let
theme = pkgs.fetchFromGitHub {
owner = "edeneast";
repo = "nightfox.nvim";
rev = "4dacd3f0185a2227bdf3b6c0975a8f0bf87cac9a";
hash = "sha256-LR0VqMMuH3GN6uI2aun7yOFsLxhGASMnFuzMrhPNJ+Q=";
};
in {
xdg.config.files."bat/themes/carbonfox.tmTheme" = {
source = "${theme}/extra/carbonfox/carbonfox.tmTheme";
};
xdg.config.files."bat/config".text = ''
--theme 'carbonfox'
--pager 'less -FR'
'';
}
|