aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/bash.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/programs/bash.nix')
-rw-r--r--modules/programs/bash.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix
deleted file mode 100644
index 6fd488d..0000000
--- a/modules/programs/bash.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- flake.modules.homeManager.bash =
- {
- pkgs,
- ...
- }:
- {
- home.packages = with pkgs; [
- zoxide
- ];
-
- programs.bash = {
- enable = true;
- enableCompletion = true;
- initExtra = ''
- # view man pages with nvim
- export MANPAGER="nvim +Man!"
-
- # vim keybindings
- set -o vi
-
- # zoxide smarter cd command
- eval "$(zoxide init bash)"
- '';
- shellAliases = {
- ls = "ls --color=auto";
- };
- };
- };
-}