diff options
| author | Andrew <admonty1@protonmail.com> | 2025-10-28 23:42:27 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-10-28 23:42:27 -0400 |
| commit | 78ec387b506546c47cfa52f599c975b5bbfe1513 (patch) | |
| tree | ee2eedabe51f2a14c9af836eeeb777468edf9cf9 /sh.nix | |
| parent | remove wlclipboard to fix ghostty (diff) | |
| download | nixos-78ec387b506546c47cfa52f599c975b5bbfe1513.tar.gz nixos-78ec387b506546c47cfa52f599c975b5bbfe1513.tar.bz2 nixos-78ec387b506546c47cfa52f599c975b5bbfe1513.zip | |
cleanup shell
Diffstat (limited to '')
| -rw-r--r-- | sh.nix | 31 |
1 files changed, 6 insertions, 25 deletions
@@ -3,21 +3,9 @@ lib, pkgs, ... -}: let - myAliases = { - ll = "ls -l"; - ".." = "cd .."; - }; - catppuccin-fish = pkgs.fetchFromGitHub { - owner = "catppuccin"; - repo = "fish"; - rev = "0ce27b518e8ead555dec34dd8be3df5bd75cff8e"; - hash = "sha256-Dc/zdxfzAUM5NX8PxzfljRbYvO9f9syuLO8yBr+R3qg="; - }; -in { +}: { programs.bash = { enable = true; - shellAliases = myAliases; }; programs.zsh = { enable = true; @@ -63,19 +51,12 @@ in { programs.fish = { enable = true; generateCompletions = true; - shellAbbrs = { - gco = "git checkout"; - gs = "git status"; - }; - shellAliases = { - #tms = "bash ~/.config/tmux/setup-sessions.sh"; - }; interactiveShellInit = '' - fish_vi_key_bindings - set -U fish_greeting - zoxide init fish | source - fzf --fish | source - starship init fish | source + fish_vi_key_bindings + set -U fish_greeting + zoxide init fish | source + fzf --fish | source + starship init fish | source set -gx EDITOR nvim set -gx VISUAL nvim ''; |
