mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-06-09 06:34:35 +02:00
update hm config
This commit is contained in:
parent
c176c3de53
commit
ac3b73217a
5 changed files with 21 additions and 18 deletions
|
@ -1,7 +1,5 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
programs.bat = {
|
||||
enable = true;
|
||||
};
|
||||
programs.bat = { enable = true; };
|
||||
}
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
programs.command-not-found = {
|
||||
enable = true;
|
||||
};
|
||||
programs.command-not-found = { enable = true; };
|
||||
}
|
||||
|
|
|
@ -4,6 +4,5 @@
|
|||
programs.fzf = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue