add more zsh plugins

This commit is contained in:
Jonas Röger 2024-04-07 17:26:02 +02:00
parent 14420faef5
commit a8df230aa7
2 changed files with 19 additions and 6 deletions

View File

@ -34,12 +34,14 @@
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
pkgs.firefox
pkgs.vscode
pkgs.chromium pkgs.chromium
pkgs.firefox
pkgs.fzf
pkgs.nil pkgs.nil
pkgs.nixpkgs-fmt pkgs.nixpkgs-fmt
pkgs.poetry
pkgs.thefuck pkgs.thefuck
pkgs.vscode
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -100,7 +102,18 @@
history.path = "${config.xdg.dataHome}/zsh/history"; history.path = "${config.xdg.dataHome}/zsh/history";
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "git" "thefuck" ]; plugins = [
"docker"
"docker-compose"
"emacs"
"fzf"
"git"
"pass"
"poetry"
"python"
"rust"
"thefuck"
];
theme = "bureau"; theme = "bureau";
}; };
}; };

View File

@ -79,10 +79,10 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
ranger
git git
ranger
vim
wget
]; ];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are