mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-10 03:13:36 +02:00
33 lines
779 B
Nix
33 lines
779 B
Nix
{ pkgs, catppuccin-helix, ... }:
|
|
|
|
{
|
|
# https://github.com/catppuccin/helix
|
|
xdg.configFile."helix/themes".source = "${catppuccin-helix}/themes/default";
|
|
|
|
programs.helix = {
|
|
enable = true;
|
|
package = pkgs.helix;
|
|
settings = {
|
|
theme = "catppuccin_mocha";
|
|
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;
|
|
};
|
|
keys.normal = {
|
|
space.space = "file_picker";
|
|
space.w = ":w";
|
|
space.q = ":q";
|
|
esc = [ "collapse_selection" "keep_primary_selection" ];
|
|
};
|
|
};
|
|
};
|
|
}
|