2023-01-19 01:07:52 +04:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
defaultApplications.editor = {
|
2023-01-20 20:09:41 +04:00
|
|
|
cmd = "${pkgs.helix}/bin/hx";
|
2023-01-19 01:07:52 +04:00
|
|
|
desktop = "helix";
|
|
|
|
};
|
|
|
|
home-manager.users.balsoft = {
|
2023-01-20 20:09:41 +04:00
|
|
|
home.packages = [
|
|
|
|
(pkgs.makeDesktopItem {
|
|
|
|
name = "helix";
|
|
|
|
desktopName = "Helix editor";
|
|
|
|
terminal = true;
|
|
|
|
categories = [ "Utility" "TextEditor" "Development" "IDE" ];
|
|
|
|
mimeTypes = [
|
|
|
|
"inode/directory"
|
|
|
|
"text/english"
|
|
|
|
"text/plain"
|
|
|
|
"text/x-makefile"
|
|
|
|
"text/x-c++hdr"
|
|
|
|
"text/x-c++src"
|
|
|
|
"text/x-chdr"
|
|
|
|
"text/x-csrc"
|
|
|
|
"text/x-java"
|
|
|
|
"text/x-moc"
|
|
|
|
"text/x-pascal"
|
|
|
|
"text/x-tcl"
|
|
|
|
"text/x-tex"
|
|
|
|
"application/x-shellscript"
|
|
|
|
"application/json"
|
|
|
|
"application/xml"
|
|
|
|
"text/xml"
|
|
|
|
"text/x-c"
|
|
|
|
"text/x-c++"
|
|
|
|
];
|
|
|
|
exec = "${pkgs.helix}/bin/hx %F";
|
|
|
|
icon = "helix";
|
|
|
|
})
|
|
|
|
];
|
2023-01-19 01:07:52 +04:00
|
|
|
xdg.configFile."helix/languages.toml".text = ''
|
|
|
|
[[language]]
|
|
|
|
name = "nix"
|
|
|
|
formatter = { command = "nixfmt", args = [] }
|
|
|
|
'';
|
|
|
|
programs.helix = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
theme = "base16";
|
2023-01-23 20:55:15 +04:00
|
|
|
editor = {
|
|
|
|
indent-guides.render = true;
|
|
|
|
lsp.display-messages = true;
|
|
|
|
cursor-shape = {
|
|
|
|
insert = "bar";
|
|
|
|
normal = "block";
|
|
|
|
select = "underline";
|
|
|
|
};
|
|
|
|
};
|
2023-01-19 01:07:52 +04:00
|
|
|
keys = {
|
|
|
|
insert = {
|
|
|
|
up = "no_op";
|
|
|
|
down = "no_op";
|
|
|
|
left = "no_op";
|
|
|
|
right = "no_op";
|
|
|
|
pageup = "no_op";
|
|
|
|
pagedown = "no_op";
|
|
|
|
home = "no_op";
|
|
|
|
end = "no_op";
|
|
|
|
};
|
|
|
|
normal = {
|
|
|
|
"A-q" = [
|
|
|
|
"goto_prev_paragraph"
|
|
|
|
"goto_next_paragraph"
|
|
|
|
"trim_selections"
|
|
|
|
":reflow 80"
|
|
|
|
"collapse_selection"
|
|
|
|
];
|
|
|
|
"A-h" = "select_prev_sibling";
|
|
|
|
"A-j" = "shrink_selection";
|
|
|
|
"A-k" = "expand_selection";
|
|
|
|
"A-l" = "select_next_sibling";
|
|
|
|
"V" = [ "select_mode" "extend_to_line_bounds" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
themes.base16 =
|
|
|
|
with (builtins.mapAttrs (_: v: "#${v}") config.themes.colors); rec {
|
|
|
|
"ui.menu" = { bg = base01; };
|
|
|
|
"ui.menu.selected" = {
|
|
|
|
bg = base00;
|
|
|
|
modifiers = [ "reversed" ];
|
|
|
|
};
|
|
|
|
"ui.linenr" = {
|
|
|
|
fg = base02;
|
|
|
|
bg = base00;
|
|
|
|
};
|
|
|
|
"ui.popup" = { modifiers = [ "reversed" ]; };
|
|
|
|
"ui.linenr.selected" = {
|
|
|
|
fg = base05;
|
|
|
|
bg = base00;
|
|
|
|
modifiers = [ "bold" ];
|
|
|
|
};
|
|
|
|
"ui.selection" = {
|
|
|
|
fg = base00;
|
|
|
|
bg = base0D;
|
|
|
|
};
|
|
|
|
"ui.selection.primary" = { modifiers = [ "reversed" ]; };
|
|
|
|
"comment" = { fg = base03; };
|
|
|
|
"ui.statusline" = {
|
|
|
|
fg = base05;
|
|
|
|
bg = base02;
|
|
|
|
};
|
|
|
|
"ui.statusline.inactive" = {
|
|
|
|
fg = base02;
|
|
|
|
bg = base05;
|
|
|
|
};
|
|
|
|
"ui.help" = {
|
|
|
|
fg = base01;
|
|
|
|
bg = base05;
|
|
|
|
};
|
|
|
|
"ui.cursor" = { modifiers = [ "reversed" ]; };
|
|
|
|
"ui.cursor.insert" = {
|
|
|
|
bg = base01;
|
|
|
|
modifiers = [ "reversed" ];
|
|
|
|
};
|
|
|
|
"variable" = base05;
|
|
|
|
"variable.builtin" = {
|
|
|
|
fg = base06;
|
|
|
|
modifiers = [ "bold" ];
|
|
|
|
};
|
|
|
|
"constant.numeric" = base0C;
|
|
|
|
"constant" = base0A;
|
|
|
|
"constant.builtin" = base0A;
|
|
|
|
"constant.character" = {
|
|
|
|
fg = base0C;
|
|
|
|
modifiers = [ "bold" ];
|
|
|
|
};
|
|
|
|
"attributes" = base0A;
|
|
|
|
"type" = {
|
|
|
|
fg = base05;
|
|
|
|
modifiers = [ "bold" ];
|
|
|
|
};
|
|
|
|
"ui.cursor.match" = { bg = base01; };
|
|
|
|
"string" = base0B;
|
2023-01-20 20:09:41 +04:00
|
|
|
# "variable.other.member" = base0B;
|
2023-01-19 01:07:52 +04:00
|
|
|
"constant.character.escape" = base0E;
|
|
|
|
"function" = base05;
|
|
|
|
"constructor" = base0A;
|
|
|
|
"special" = base0F;
|
|
|
|
"keyword" = {
|
|
|
|
fg = base0D;
|
|
|
|
modifiers = [ "bold" ];
|
|
|
|
};
|
|
|
|
"markup.heading" = {
|
|
|
|
fg = base0A;
|
|
|
|
modifiers = [ "bold" ];
|
|
|
|
};
|
2023-01-23 22:12:37 +04:00
|
|
|
"markup.bold" = { modifiers = [ "bold" ]; };
|
|
|
|
"markup.italic" = { modifiers = [ "italic" ]; };
|
|
|
|
"markup.link" = {
|
|
|
|
underline.style = "line";
|
|
|
|
fg = base0D;
|
|
|
|
};
|
|
|
|
"markup.quote" = {
|
|
|
|
bg = base01;
|
|
|
|
modifiers = [ "italic" ];
|
|
|
|
};
|
|
|
|
"markup.raw" = { bg = base01; };
|
2023-01-19 01:07:52 +04:00
|
|
|
"label" = base0B;
|
|
|
|
"namespace" = base0F;
|
|
|
|
"diff.plus" = base0B;
|
|
|
|
"diff.delta" = base0A;
|
|
|
|
"diff.minus" = base08;
|
2023-01-27 22:48:27 +04:00
|
|
|
"diagnostic" = { underline = { style = "line"; }; };
|
2023-01-19 01:07:52 +04:00
|
|
|
"diagnostic.error" = { fg = base08; } // diagnostic;
|
|
|
|
"diagnostic.warning" = { fg = base09; } // diagnostic;
|
|
|
|
"ui.gutter" = { bg = base00; };
|
|
|
|
"info" = base0D;
|
|
|
|
"hint" = base02;
|
|
|
|
"debug" = base02;
|
|
|
|
"warning" = base09;
|
|
|
|
"error" = base08;
|
2023-01-23 20:55:15 +04:00
|
|
|
"ui.virtual.indent-guide" = base01;
|
2023-01-19 01:07:52 +04:00
|
|
|
"highlight" = base09;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|