summaryrefslogtreecommitdiff
path: root/common/programs/fish.nix
diff options
context:
space:
mode:
authorbeeb5k <beebeeb5k@gmail.com>2026-06-20 02:51:59 +0530
committerbeeb5k <beebeeb5k@gmail.com>2026-06-20 02:51:59 +0530
commit47bc39d25a359c94e9a139be9d453a05694ef341 (patch)
treecd5ad0f5e413056e74feb6a7790b7b510ea5d1c8 /common/programs/fish.nix
parentf1d30adc192df38fe8f6cd50cb2eae048789459b (diff)
Font and cursor
Diffstat (limited to 'common/programs/fish.nix')
-rw-r--r--common/programs/fish.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/common/programs/fish.nix b/common/programs/fish.nix
index 9d979a2..8d9be78 100644
--- a/common/programs/fish.nix
+++ b/common/programs/fish.nix
@@ -3,23 +3,20 @@
...
}:
{
- programs.fish.enable = false;
-
- home.packages = with pkgs; [
- fzf
- ];
+ # home.packages = with pkgs; [
+ # fzf
+ # ];
programs.fish = {
+ enable = true;
interactiveShellInit =
#fish
''
function fish_mode_prompt
end
set -g fish_greeting ""
+ set -U fish_autosuggestion_enabled 0
fish_vi_key_bindings
- set -U fish_color_user blue
- set -U fish_color_host normal
- set -U fish_color_cwd blue
'';
};
}