Began aggresively formatting project

This commit is contained in:
2023-12-19 17:16:03 -04:00
parent 38b461ae65
commit 22dc9f16fb
31 changed files with 177 additions and 242 deletions

View File

@@ -1,28 +1,22 @@
{ config
, lib
, ...
}:
{
{lib, ...}: {
programs.zsh = lib.mkForce {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "grc" "git" ];
plugins = ["grc" "git"];
};
zplug = {
enable = true;
plugins = [
{ name = "zsh-users/zsh-autosuggestions"; }
{name = "zsh-users/zsh-autosuggestions";}
{
name = "zsh-users/zsh-syntax-highlighting";
}
#{ name = "marlonrichert/zsh-autocomplete"; }
{ name = "hlissner/zsh-autopair"; }
{name = "hlissner/zsh-autopair";}
];
};
};
}