home: tmux: fix undercurl rendering
This commit is contained in:
parent
7c52c6a6d4
commit
ecd65c5e86
1 changed files with 5 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ let
|
|||
lib.concatMapStringsSep "\n" mkFlag terminals;
|
||||
|
||||
mkTerminalFeatures = mkTerminalFlags "terminal-features";
|
||||
mkTerminalOverrides = mkTerminalFlags "terminal-overrides";
|
||||
in
|
||||
{
|
||||
options.my.home.tmux = with lib; {
|
||||
|
|
@ -30,6 +31,8 @@ in
|
|||
hyperlinks = my.mkDisableOption "hyperlinks through OSC8";
|
||||
|
||||
trueColor = my.mkDisableOption "24-bit (RGB) color support";
|
||||
|
||||
underscoreStyle = my.mkDisableOption "underscore style/color support";
|
||||
};
|
||||
});
|
||||
|
||||
|
|
@ -128,6 +131,8 @@ in
|
|||
${mkTerminalFeatures "hyperlinks" "hyperlinks"}
|
||||
# Force 24-bit color for each relevant $TERM
|
||||
${mkTerminalFeatures "trueColor" "RGB"}
|
||||
# Force underscore style/color for each relevant $TERM
|
||||
${mkTerminalFeatures "underscoreStyle" "usstyle"}
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue