blob: 1063f048f5f144f47915234bae6d5a2429c18bbb (
plain) (
blame)
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
26
27
28
29
30
31
32
|
{ config, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
border = {
radius = 0;
width = 2;
};
colors = {
background = "1e1e2eff";
border = "f5c2e7ff";
counter = "7f849cff";
input = "cdd6f4ff";
match = "f5c2e7ff";
placeholder = "7f849cff";
prompt = "bac2deff";
selection = "585b70ff";
selection-match = "f5c2e7ff";
selection-text = "cdd6f4ff";
text = "cdd6f4ff";
};
main = {
font = "Fira Code:size=11";
terminal = "foot {cmd}";
use-bold = "yes";
};
};
};
}
|