mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
41d289c5db
preparing for light mode, even though specializations aren't working
77 lines
2.9 KiB
Nix
77 lines
2.9 KiB
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf config.gui.enable {
|
|
home-manager.users.${config.user} = {
|
|
# xsession.windowManager.i3.config.terminal = "kitty";
|
|
# programs.rofi.terminal = "${pkgs.kitty}/bin/kitty";
|
|
programs.kitty = {
|
|
enable = true;
|
|
environment = { };
|
|
extraConfig = "";
|
|
font.size = 14;
|
|
keybindings = {
|
|
"shift+enter" = "send_text all \\x1F";
|
|
"super+f" = "toggle_fullscreen";
|
|
};
|
|
settings = {
|
|
|
|
# Colors (adapted from: https://github.com/kdrag0n/base16-kitty/blob/master/templates/default-256.mustache)
|
|
background = config.theme.colors.base00;
|
|
foreground = config.theme.colors.base05;
|
|
selection_background = config.theme.colors.base05;
|
|
selection_foreground = config.theme.colors.base00;
|
|
url_color = config.theme.colors.base04;
|
|
cursor = config.theme.colors.base05;
|
|
active_border_color = config.theme.colors.base03;
|
|
inactive_border_color = config.theme.colors.base01;
|
|
active_tab_background = config.theme.colors.base00;
|
|
active_tab_foreground = config.theme.colors.base05;
|
|
inactive_tab_background = config.theme.colors.base01;
|
|
inactive_tab_foreground = config.theme.colors.base04;
|
|
tab_bar_background = config.theme.colors.base01;
|
|
|
|
# normal
|
|
color0 = config.theme.colors.base00;
|
|
color1 = config.theme.colors.base08;
|
|
color2 = config.theme.colors.base0B;
|
|
color3 = config.theme.colors.base0A;
|
|
color4 = config.theme.colors.base0D;
|
|
color5 = config.theme.colors.base0E;
|
|
color6 = config.theme.colors.base0C;
|
|
color7 = config.theme.colors.base05;
|
|
|
|
# bright
|
|
color8 = config.theme.colors.base03;
|
|
color9 = config.theme.colors.base08;
|
|
color10 = config.theme.colors.base0B;
|
|
color11 = config.theme.colors.base0A;
|
|
color12 = config.theme.colors.base0D;
|
|
color13 = config.theme.colors.base0E;
|
|
color14 = config.theme.colors.base0C;
|
|
color15 = config.theme.colors.base07;
|
|
|
|
# extended base16 colors
|
|
color16 = config.theme.colors.base09;
|
|
color17 = config.theme.colors.base0F;
|
|
color18 = config.theme.colors.base01;
|
|
color19 = config.theme.colors.base02;
|
|
color20 = config.theme.colors.base04;
|
|
color21 = config.theme.colors.base06;
|
|
|
|
# Scrollback
|
|
scrolling_lines = 10000;
|
|
scrollback_pager_history_size = 10; # MB
|
|
scrollback_pager = ''
|
|
${pkgs.neovim}/bin/nvim -c 'setlocal nonumber nolist showtabline=0 foldcolumn=0|Man!' -c "autocmd VimEnter * normal G" -'';
|
|
|
|
# Window
|
|
window_padding_width = 6;
|
|
|
|
tab_bar_edge = "top";
|
|
tab_bar_style = "slant";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|