dotfiles/modules/applications/alacritty.nix

91 lines
2.7 KiB
Nix
Raw Normal View History

2022-05-22 23:43:46 +00:00
{ config, pkgs, lib, ... }: {
2022-05-22 23:43:46 +00:00
config = lib.mkIf config.gui.enable {
home-manager.users.${config.user} = {
xsession.windowManager.i3.config.terminal = "alacritty";
programs.rofi.terminal = "${pkgs.alacritty}/bin/alacritty";
programs.alacritty = {
enable = true;
settings = {
window = {
dimensions = {
columns = 85;
lines = 30;
};
padding = {
x = 20;
y = 20;
};
opacity = 1.0;
};
2022-05-22 23:43:46 +00:00
scrolling.history = 10000;
2022-06-20 03:44:29 +00:00
font = { size = 14.0; };
2022-05-22 23:43:46 +00:00
key_bindings = [
# Used for word completion in fish_user_key_bindings
2022-05-22 23:43:46 +00:00
{
key = "Return";
mods = "Shift";
2022-05-22 23:43:46 +00:00
chars = "\\x1F";
}
# Used for searching nixpkgs in fish_user_key_bindings
{
key = "N";
mods = "Control|Shift";
chars = "\\x11F";
}
2022-05-22 23:43:46 +00:00
{
key = "H";
mods = "Control|Shift";
2022-05-22 23:43:46 +00:00
mode = "~Vi";
action = "ToggleViMode";
}
{
key = "Return";
mode = "Vi";
action = "ToggleViMode";
}
# Used to enable $ keybind in Vi mode
{
key = 5; # Scancode for key4
mods = "Shift";
mode = "Vi|~Search";
action = "Last";
}
];
colors = {
primary = {
2022-07-26 03:36:06 +00:00
background = config.colorscheme.base00;
foreground = config.colorscheme.base05;
2022-05-22 23:43:46 +00:00
};
cursor = {
text = "#1d2021";
2022-07-26 03:36:06 +00:00
cursor = config.colorscheme.base05;
2022-05-22 23:43:46 +00:00
};
normal = {
black = "#1d2021";
2022-07-26 03:36:06 +00:00
red = config.colorscheme.base08;
green = config.colorscheme.base0B;
yellow = config.colorscheme.base0A;
blue = config.colorscheme.base0D;
magenta = config.colorscheme.base0E;
cyan = config.colorscheme.base0C;
white = config.colorscheme.base05;
2022-05-22 23:43:46 +00:00
};
bright = {
2022-07-26 03:36:06 +00:00
black = config.colorscheme.base03;
red = config.colorscheme.base09;
green = config.colorscheme.base01;
yellow = config.colorscheme.base02;
blue = config.colorscheme.base04;
magenta = config.colorscheme.base06;
cyan = config.colorscheme.base0F;
white = config.colorscheme.base07;
2022-05-22 23:43:46 +00:00
};
};
2022-05-22 23:43:46 +00:00
draw_bold_text_with_bright_colors = false;
};
2022-04-28 22:55:15 +00:00
};
};
};
}