diff options
| author | seth <[email protected]> | 2023-05-01 01:37:05 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-01 01:37:05 -0400 |
| commit | db2a176495a8d212cacde6cb38162ea1cd30ee1c (patch) | |
| tree | 62744d6f62abde17724974357b484b491ac7cd1d /users/seth/shell/default.nix | |
| parent | 96ba85bd431b96c71357afdb265c93c806d063da (diff) | |
update shell configs
Diffstat (limited to 'users/seth/shell/default.nix')
| -rw-r--r-- | users/seth/shell/default.nix | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/users/seth/shell/default.nix b/users/seth/shell/default.nix index 93472d9..e8ae1c1 100644 --- a/users/seth/shell/default.nix +++ b/users/seth/shell/default.nix @@ -2,7 +2,10 @@ config, pkgs, ... -}: { +}: let + inherit (builtins) fromTOML readFile; + inherit (pkgs) fetchFromGitHub; +in { imports = [ ./bash.nix ./fish.nix @@ -15,7 +18,7 @@ theme = "catppuccin"; }; themes = { - catppuccin = builtins.readFile (pkgs.fetchFromGitHub { + catppuccin = readFile (fetchFromGitHub { owner = "catppuccin"; repo = "bat"; rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1"; @@ -24,11 +27,13 @@ + "/Catppuccin-mocha.tmTheme"); }; }; + exa = { enable = true; enableAliases = true; icons = true; }; + starship = { enable = true; enableBashIntegration = false; @@ -37,10 +42,11 @@ { format = "$all"; palette = "catppuccin_mocha"; + command_timeout = 50; } - // builtins.fromTOML (builtins.readFile ./starship.toml) - // builtins.fromTOML (builtins.readFile - (pkgs.fetchFromGitHub + // fromTOML (readFile ./starship.toml) + // fromTOML (readFile + (fetchFromGitHub { owner = "catppuccin"; repo = "starship"; |
