Evie Litherland-Smith
63cc162824
Move up one level for consistency Add some custom shell indicators for starship
32 lines
756 B
Nix
32 lines
756 B
Nix
{
|
|
pkgs,
|
|
fonts,
|
|
...
|
|
}: {
|
|
programs.konsole = {
|
|
enable = true;
|
|
defaultProfile = "One-Light";
|
|
customColorSchemes.onelight = ./onelight.colorscheme;
|
|
profiles.onelight = {
|
|
name = "One-Light";
|
|
colorScheme = "onelight";
|
|
font = {
|
|
name = fonts.monospace.name;
|
|
size = fonts.sizes.terminal;
|
|
};
|
|
extraConfig = {
|
|
"Interaction Options" = {
|
|
"TextEditorCmd" = 6;
|
|
"TextEditorCmdCustom" = "emacsclient -c +LINE:COLUMN PATH";
|
|
"UnderlineFilesEnabled" = "true";
|
|
"OpenLinksByDirectClickEnabled" = "true";
|
|
};
|
|
"Terminal Features" = {
|
|
"BlinkingCursorEnabled" = "true";
|
|
"VerticalLine" = "false";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|