Colors
This commit is contained in:
parent
298d35b92a
commit
781e023c74
@ -49,11 +49,11 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 2;
|
gaps_in = 3;
|
||||||
gaps_out = 2;
|
gaps_out = 6;
|
||||||
border_size = 2;
|
border_size = 2;
|
||||||
|
|
||||||
"col.active_border" = "rgba(00aaffee) rgba(00ffffee) -45deg";
|
"col.active_border" = "rgba(ff970aff) rgba(ff830aff) 45deg";
|
||||||
"col.inactive_border" = "rgba(595959aa)";
|
"col.inactive_border" = "rgba(595959aa)";
|
||||||
|
|
||||||
layout = "dwindle";
|
layout = "dwindle";
|
||||||
@ -124,6 +124,7 @@
|
|||||||
"$mod, Return, exec, $term"
|
"$mod, Return, exec, $term"
|
||||||
"$mod, B, exec, $browser"
|
"$mod, B, exec, $browser"
|
||||||
"$mod, E, killactive,"
|
"$mod, E, killactive,"
|
||||||
|
"$mod, Q, exec, hyprctl kill"
|
||||||
|
|
||||||
"$mod, left, movefocus, l"
|
"$mod, left, movefocus, l"
|
||||||
"$mod, right, movefocus, r"
|
"$mod, right, movefocus, r"
|
||||||
|
17
common/users/cameron/home-manager/kitty.nix
Normal file
17
common/users/cameron/home-manager/kitty.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ pkgs, lib, osConfig, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.kitty = {
|
||||||
|
enable = (builtins.length osConfig.desktop) != 0;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
background = "#333333";
|
||||||
|
foreground = "#cccccc";
|
||||||
|
background_opacity = 0.95;
|
||||||
|
|
||||||
|
editor = "nvim";
|
||||||
|
|
||||||
|
update_check_interval = 0;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -85,7 +85,7 @@ function set_prompt() {
|
|||||||
|
|
||||||
local prefix=""
|
local prefix=""
|
||||||
for i in $(seq 1 "''${#prefixes[@]}"); do
|
for i in $(seq 1 "''${#prefixes[@]}"); do
|
||||||
prefix+="%F{''${colors[$i]:-255}}''${prefixes[$i]}%F{255} "
|
prefix+="%F{''${colors[$i]:-255}}''${prefixes[$i]}%f "
|
||||||
done
|
done
|
||||||
|
|
||||||
PROMPT="[''${prefix}%n@%m %1~]%(#.#.$) "
|
PROMPT="[''${prefix}%n@%m %1~]%(#.#.$) "
|
||||||
@ -118,7 +118,7 @@ fi
|
|||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
grep = "grep --color=auto";
|
grep = "grep --color=auto";
|
||||||
ls = "ls --color=auto";
|
ls = "eza --icons --group-directories-first";
|
||||||
|
|
||||||
nv = "nvim";
|
nv = "nvim";
|
||||||
nvd = "nvim .";
|
nvd = "nvim .";
|
||||||
|
@ -24,4 +24,8 @@
|
|||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
eza
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
{ lib, pkgs, inputs, config, osConfig, common_dir, ... }:
|
{ lib, pkgs, inputs, config, osConfig, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
(common_dir + /users/cameron/home.nix)
|
(inputs.common_dir + /users/cameron/home.nix)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
colorScheme = inputs.nix-colors.colorSchemes.framer;
|
||||||
|
|
||||||
|
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
{ lib, pkgs, config, osConfig, common_dir, ... }:
|
{ lib, pkgs, inputs, config, osConfig, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
(common_dir + /users/cameron/home.nix)
|
(inputs.common_dir + /users/cameron/home.nix)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
colorScheme = inputs.nix-colors.colorSchemes.dracula;
|
||||||
|
|
||||||
|
|
||||||
home.stateVersion = "23.11";
|
home.stateVersion = "23.11";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user