added fedora specific config

This commit is contained in:
Thilo Billerbeck 2023-05-22 20:17:53 +02:00
parent 4586a56916
commit e8b3ca7dd4
6 changed files with 344 additions and 14 deletions

View file

@ -1,8 +0,0 @@
{ config, pkgs, lib, ... }:
{
programs = {
vscode = {
enable = true;
};
};
}

View file

@ -36,11 +36,6 @@ 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: {
@ -48,5 +43,8 @@ in {
tags = [ "from:oh-my-zsh" ];
}) omz-plugins;
};
initExtra = ''
eval $(${pkgs.thefuck}/bin/thefuck --alias)
'';
};
}