Compare commits

..

No commits in common. "e40f70d16decdb9c7b5ff0f8882205cd8ff74d33" and "2772acee3941a7f423701591ca7985a4cb9c3965" have entirely different histories.

2 changed files with 1 additions and 28 deletions

View File

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [ ./fish.nix ./git.nix ./helix.nix ];
imports = [ ./zsh.nix ./git.nix ./helix.nix ];
home = {
packages = with pkgs; [

View File

@ -1,27 +0,0 @@
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [ any-nix-shell fishPlugins.tide fishPlugins.bass ];
programs.fish = {
enable = true;
shellAbbrs = {
"_" = "sudo";
};
shellInit = ''
# avoid macOS updates to destroy nix
# if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
# source '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
# end
any-nix-shell fish --info-right | source
# source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
# disable autosuggestions
set -g fish_autosuggestion_enabled 0
'';
};
}