update hm config

This commit is contained in:
Thilo Billerbeck 2023-05-03 00:43:33 +02:00
parent c176c3de53
commit ac3b73217a
5 changed files with 21 additions and 18 deletions

View file

@ -1,7 +1,5 @@
{ config, pkgs, lib, ... }:
{
programs.bat = {
enable = true;
};
programs.bat = { enable = true; };
}

View file

@ -1,7 +1,5 @@
{ config, pkgs, lib, ... }:
{
programs.command-not-found = {
enable = true;
};
programs.command-not-found = { enable = true; };
}

View file

@ -4,6 +4,5 @@
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
}

View file

@ -11,7 +11,6 @@ let
"gradle"
"node"
"npm"
"nvm"
"rbenv"
"sudo"
"direnv"
@ -39,16 +38,17 @@ in {
undo-git-reset-head = "git reset 'HEAD@{1}'";
update-local = "bash $HOME/.dotfiles/install";
};
plugins = [{
name = "bun";
file = "completions/bun.zsh";
src = pkgs.bun;
}];
zplug = {
enable = true;
plugins = map (x: {
name = "plugins/${x}";
tags = [ "from:oh-my-zsh" ];
}) omz-plugins ++ [
{
name = "chisui/zsh-nix-shell";
}
];
}) omz-plugins;
};
};
}