mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
added alacritty
This commit is contained in:
parent
d585030b4d
commit
5b65fc5c56
66
users/rouven/modules/alacritty/alacritty.yml
Normal file
66
users/rouven/modules/alacritty/alacritty.yml
Normal file
|
@ -0,0 +1,66 @@
|
|||
env:
|
||||
TERM: xterm-256color
|
||||
font:
|
||||
size: 8
|
||||
# normal:
|
||||
# family: SourceCodePro
|
||||
|
||||
shell:
|
||||
program: '/etc/profiles/per-user/rouven/bin/zsh'
|
||||
|
||||
window:
|
||||
opacity: 0.7
|
||||
|
||||
colors:
|
||||
primary:
|
||||
background: '0x282a36'
|
||||
foreground: '0xf8f8f2'
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
search:
|
||||
matches:
|
||||
foreground: '0x44475a'
|
||||
background: '0x50fa7b'
|
||||
focused_match:
|
||||
foreground: '0x44475a'
|
||||
background: '0xffb86c'
|
||||
footer_bar:
|
||||
background: '0x282a36'
|
||||
foreground: '0xf8f8f2'
|
||||
line_indicator:
|
||||
foreground: None
|
||||
background: None
|
||||
selection:
|
||||
text: CellForeground
|
||||
background: '0x44475a'
|
||||
normal:
|
||||
black: '0x21222c'
|
||||
red: '0xff5555'
|
||||
green: '0x50fa7b'
|
||||
yellow: '0xf1fa8c'
|
||||
blue: '0xbd93f9'
|
||||
magenta: '0xff79c6'
|
||||
cyan: '0x8be9fd'
|
||||
white: '0xbfbfbf'
|
||||
bright:
|
||||
black: '0x4d4d4d'
|
||||
red: '0xff6e67'
|
||||
green: '0x5af78e'
|
||||
yellow: '0xf4f99d'
|
||||
blue: '0xcaa9fa'
|
||||
magenta: '0xff92d0'
|
||||
cyan: '0x9aedfe'
|
||||
white: '0xe6e6e6'
|
||||
dim:
|
||||
black: '0x14151b'
|
||||
red: '0xff2222'
|
||||
green: '0x1ef956'
|
||||
yellow: '0xebf85b'
|
||||
blue: '0x4d5b86'
|
||||
magenta: '0xff46b0'
|
||||
cyan: '0x59dffc'
|
||||
white: '0xe6e6d1'
|
5
users/rouven/modules/alacritty/default.nix
Normal file
5
users/rouven/modules/alacritty/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [ alacritty ];
|
||||
home.file.".config/alacritty/alacritty.yml".source = ./alacritty.yml;
|
||||
}
|
|
@ -4,6 +4,7 @@
|
|||
imports =
|
||||
[
|
||||
./vifm
|
||||
./alacritty
|
||||
];
|
||||
home.username = "rouven";
|
||||
home.homeDirectory = "/home/rouven";
|
||||
|
@ -32,7 +33,6 @@
|
|||
|
||||
# sound
|
||||
pavucontrol
|
||||
yadm
|
||||
|
||||
# bluetooth
|
||||
blueman
|
||||
|
@ -276,8 +276,6 @@
|
|||
enable = true;
|
||||
};
|
||||
|
||||
home.stateVersion = "22.11";
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue