aboutsummaryrefslogtreecommitdiff
path: root/modules/user/zsh/default.nix
diff options
context:
space:
mode:
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;
- };
- };
-}