feat: multi-machine structure + gruvbox theme + kitty + zsh modules
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
c = config.theme.colors;
|
||||
in
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
|
||||
enableCompletion = true;
|
||||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
|
||||
history = {
|
||||
size = 50000;
|
||||
save = 50000;
|
||||
ignoreDups = true;
|
||||
share = true;
|
||||
};
|
||||
|
||||
# new
|
||||
initContent = ''
|
||||
PROMPT="%F{${c.green_b}}%n@%m%f %F{${c.yellow_b}}%~%f %F{${c.fg4}}»%f "
|
||||
'';
|
||||
|
||||
shellAliases = {
|
||||
ls = "eza --icons";
|
||||
ll = "eza -la --icons";
|
||||
cat = "bat";
|
||||
grep = "rg";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user