Skip to content

Commit

Permalink
feat(zsh): os-specific omz plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Sep 2, 2023
1 parent e4424f9 commit fe438a6
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions home/apps/zsh.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
config,
flakePath,
lib,
pkgs,
...
}: let
Expand Down Expand Up @@ -113,14 +114,19 @@ in {
dotDir = ".config/zsh";
oh-my-zsh = {
enable = true;
plugins = [
"colored-man-pages"
"colorize"
"docker"
"docker-compose"
"git"
"kubectl"
];
plugins =
[
"colored-man-pages"
"colorize"
"docker"
"docker-compose"
"git"
"kubectl"
]
++ lib.optionals pkgs.stdenv.isDarwin [
"dash"
"macos"
];
};
plugins = with pkgs; (zshPlugins [
{
Expand Down

0 comments on commit fe438a6

Please sign in to comment.