From a0b54579e1a94be77ed030009337bd18daded98b Mon Sep 17 00:00:00 2001 From: arunoruto Date: Mon, 14 Oct 2024 01:52:51 +0200 Subject: [PATCH] Comment out antidote and remove line numbers in bat --- modules/home-manager/server/shell/bat.nix | 2 +- modules/home-manager/server/shell/zsh.nix | 27 ++++++++--------------- 2 files changed, 10 insertions(+), 19 deletions(-) diff --git a/modules/home-manager/server/shell/bat.nix b/modules/home-manager/server/shell/bat.nix index f56a37d..88592d3 100644 --- a/modules/home-manager/server/shell/bat.nix +++ b/modules/home-manager/server/shell/bat.nix @@ -21,7 +21,7 @@ zsh = { shellAliases = { - cat = "bat --paging=never"; + cat = "bat -pp"; less = "bat --paging=always"; }; }; diff --git a/modules/home-manager/server/shell/zsh.nix b/modules/home-manager/server/shell/zsh.nix index d729539..a928c11 100644 --- a/modules/home-manager/server/shell/zsh.nix +++ b/modules/home-manager/server/shell/zsh.nix @@ -91,24 +91,15 @@ # <<< conda initialize <<< ''; - antidote = { - enable = false; - plugins = [ - "zsh-users/zsh-autosuggestions" - "zsh-users/zsh-completions" - "zsh-users/zsh-history-substring-search" - "zsh-users/zsh-syntax-highlighting" - ]; - }; + # antidote = { + # enable = false; + # plugins = [ + # "zsh-users/zsh-autosuggestions" + # "zsh-users/zsh-completions" + # "zsh-users/zsh-history-substring-search" + # "zsh-users/zsh-syntax-highlighting" + # ]; + # }; }; - - # starship.enableZshIntegration = true; - # zoxide.enableZshIntegration = true; - # fzf.enableZshIntegration = true; - # atuin.enableZshIntegration = true; - # thefuck.enableZshIntegration = true; - # yazi.enableZshIntegration = true; - # direnv.enableZshIntegration = true; - # zellij.enableZshIntegration = true; }; }