getting there
This commit is contained in:
parent
882990978f
commit
eab430dee2
4 changed files with 77 additions and 16 deletions
46
home/foot.nix
Normal file
46
home/foot.nix
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
shell = "/home/till/.nix-profile/bin/fish -c 'tmux attach || tmux'";
|
||||
pad = "20x20";
|
||||
font = "JetBrains Mono:size=9";
|
||||
initial-window-mode = "maximized";
|
||||
line-height = "11.3";
|
||||
dpi-aware = "yes";
|
||||
mouse.hide-when-typing = "yes";
|
||||
cursor = {
|
||||
style = "beam";
|
||||
blink = "yes";
|
||||
color = "eeeeee 1c1c1c";
|
||||
};
|
||||
csd.size = "0";
|
||||
colors = {
|
||||
alpha = "1.0";
|
||||
background = "eeeeee";
|
||||
foreground = "1c1c1c";
|
||||
regular0 = "1c1c1c"; # black
|
||||
bright0 = "585858 "; # bright black
|
||||
regular1 = "af0000"; # red
|
||||
bright1 = "d70000"; # bright red
|
||||
regular2 = "008700"; # green
|
||||
bright2 = "5faf5f"; # bright green
|
||||
regular3 = "d75f00"; # yellow
|
||||
bright3 = "ffaf00 "; # bright yellow
|
||||
regular4 = "005faf "; # blue
|
||||
bright4 = "0087af "; # bright blue
|
||||
regular5 = "d70087 "; # magenta
|
||||
bright5 = "ff5faf "; # bright magenta
|
||||
regular6 = "005f87 "; # cyan
|
||||
bright6 = "00afaf "; # bright cyan
|
||||
regular7 = "ffffff"; # white
|
||||
bright7 = "bcbcbc "; # bright white
|
||||
};
|
||||
key-bindings = {
|
||||
show-urls-launch = "Control+Shift+g";
|
||||
show-urls-copy = "Control+Shift+y";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue