feat: initial commit

This commit is contained in:
Jacob Bachmann 2023-08-30 19:14:26 +02:00
commit 7fc2437bed
38 changed files with 1528 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ config, pkgs, ... }: {
programs.zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
plugins = [
{
name = "zsh-syntax-highlighting";
src = pkgs.fetchFromGitHub {
owner = "zsh-users";
repo = "zsh-syntax-highlighting";
rev = "0.7.1";
hash = "sha256-gOG0NLlaJfotJfs+SUhGgLTNOnGLjoqnUp54V9aFJg8=";
};
}
];
oh-my-zsh = {
enable = true;
theme = "terminalparty";
plugins = [
"git"
];
};
history = {
path = "${config.xdg.dataHome}/zsh/histfile";
size = 10000;
save = 10000;
};
};
}