aboutsummaryrefslogtreecommitdiff
path: root/modules/user/zsh/default.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-08-09 01:21:53 -0400
committerRosa <rosaontheweb@proton.me>2026-08-09 01:21:53 -0400
commit983bfb52a200a94b17ad280e10eeeec7683affba (patch)
tree2e79cac1afdc640537b252a04f9af99f2bb3d968 /modules/user/zsh/default.nix
parentafc0ab72138a6058a9ca98f2cbe13c21f88daa7d (diff)
start rewriterefactor
Diffstat (limited to 'modules/user/zsh/default.nix')
-rw-r--r--modules/user/zsh/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/user/zsh/default.nix b/modules/user/zsh/default.nix
deleted file mode 100644
index 3d52279..0000000
--- a/modules/user/zsh/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- config,
- lib,
- options,
- ...
-}:
-{
- config.programs = {
- direnv.enable = lib.mkDefault config.programs.zsh.enable;
- zsh = {
- enable = lib.mkDefault true; # default user shell
- autocd = true;
- autosuggestion = {
- enable = lib.mkDefault true;
- strategy = [
- "history"
- "completion"
- ];
- };
-
- history.ignoreAllDups = true;
- initContent = builtins.readFile ./zshrc.zsh;
- loginExtra = builtins.readFile ./zlogin.zsh;
- setOptions = [ "extendedglob" ];
- shellAliases = {
- k = "kak";
- };
-
- syntaxHighlighting.enable = true;
- };
- };
-}