bash | switch to kitty as default term prog
This commit is contained in:
parent
808f735554
commit
950a988bd9
1 changed files with 23 additions and 17 deletions
|
|
@ -1,22 +1,28 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
programs.kitty = {
|
programs = {
|
||||||
enable = true;
|
kitty = {
|
||||||
settings = {
|
enable = true;
|
||||||
mouse_hide_wait = "3.0";
|
settings = {
|
||||||
url_style = "double";
|
mouse_hide_wait = "3.0";
|
||||||
copy_on_select = "no";
|
url_style = "double";
|
||||||
# background_opacity = "0.75";
|
copy_on_select = "no";
|
||||||
scrollback_lines = 4000;
|
background_opacity = "0.75";
|
||||||
scrollback_pager_history_size = 2048;
|
scrollback_lines = 4000;
|
||||||
|
scrollback_pager_history_size = 2048;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
foot = {
|
||||||
programs.foot = {
|
enable = true;
|
||||||
enable = true;
|
server = { enable = true; };
|
||||||
server = { enable = true; };
|
settings = {
|
||||||
settings = {
|
main = { term = "tmux-256color"; };
|
||||||
main = { term = "tmux-256color"; };
|
mouse = { hide-when-typing = "yes"; };
|
||||||
mouse = { hide-when-typing = "yes"; };
|
bell = { urgent = "yes"; };
|
||||||
bell = { urgent = "yes"; };
|
};
|
||||||
|
};
|
||||||
|
yazi = { # terminal fm ala ranger/vifm
|
||||||
|
enable = true;
|
||||||
|
flavors = { dark = pkgs.yaziPlugins.yatline-catppuccin; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue