helix theme

This commit is contained in:
2024-06-01 10:56:18 +02:00
parent f7e29a9039
commit 77acc9e5ad
2 changed files with 10 additions and 15 deletions

View File

@@ -1,24 +1,18 @@
{pkgs, ...}: {
{ pkgs, ... }: {
programs.helix = {
enable = true;
# settings = {
# theme = "autumn_night_transparent";
# editor.cursor-shape = {
# normal = "block";
# insert = "bar";
# select = "underline";
# };
# };
settings = {
theme = "gruvbox_dark_soft";
editor.cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
};
languages.language = [{
name = "nix";
auto-format = true;
formatter.command = "${pkgs.nixfmt}/bin/nixfmt";
}];
# themes = {
# autumn_night_transparent = {
# "inherits" = "autumn_night";
# "ui.background" = { };
# };
# };
};
}