Editors mime types

This commit is contained in:
Filippo Berto 2022-07-01 10:07:30 +02:00
parent 778f52923f
commit 4c05f3a362
2 changed files with 34 additions and 0 deletions

View file

@ -13,6 +13,23 @@
comment = "Helix text editor"; comment = "Helix text editor";
terminal = true; terminal = true;
categories = [ "Development" ]; categories = [ "Development" ];
mimeTypes = [
"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"
"text/x-c"
"text/x-c++"
];
}) })
]; ];
programs.helix = { programs.helix = {

View file

@ -49,6 +49,23 @@ let
comment = "Kakoune text editor"; comment = "Kakoune text editor";
terminal = true; terminal = true;
categories = [ "Development" ]; categories = [ "Development" ];
mimeTypes = [
"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"
"text/x-c"
"text/x-c++"
];
}) })
]; ];