blob: 604a44ead4de55867f165153b9418333c463bb99 (
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
26
27
28
29
30
31
32
|
{ pkgs, inputs, ... }: {
# https://github.com/catppuccin/helix
# xdg.configFile."helix/themes".source = "${inputs.catppuccin-helix}/themes/default";
programs.helix = {
enable = true;
package = pkgs.helix;
# defaultEditor = true;
themes = {
catppuccin_mocha_transparent = {
"inherits" = "catppuccin_mocha";
"ui.background" = {};
};
};
settings = {
theme = "catppuccin_mocha_transparent";
# theme = "base16_transparent";
editor = {
line-number = "relative";
cursorline = true;
color-modes = true;
lsp.display-messages = true;
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
indent-guides.render = true;
};
};
};
}
|