shitpiss
This commit is contained in:
parent
a3bccbf459
commit
b06e536462
2 changed files with 16 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
home.file.".zshenv".enable = false;
|
||||
|
@ -8,10 +8,24 @@
|
|||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
dotDir = ".config/zsh";
|
||||
autocd = true;
|
||||
|
||||
history.size = 10000;
|
||||
history.ignoreAllDups = true;
|
||||
/* Not persisted on purpose */
|
||||
history.path = "${config.xdg.cacheHome}/zsh_history";
|
||||
|
||||
plugins = [
|
||||
{
|
||||
name = "zsh-nix-shell";
|
||||
file = "nix-shell.plugin.zsh";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "chisui";
|
||||
repo = "zsh-nix-shell";
|
||||
rev = "v0.8.0";
|
||||
sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
font-size = 12;
|
||||
background-opacity = 0.85;
|
||||
scrollback-limit = literally_a_billion_million;
|
||||
theme = "Fahrenheit";
|
||||
theme = "Tomorrow Night Burns";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue