2020-04-12 18:57:47 +02:00
|
|
|
{ pkgs, ... }:
|
2020-05-13 11:34:15 +02:00
|
|
|
let
|
|
|
|
shellAliases = import ./aliases.nix;
|
|
|
|
common = import ./common.nix;
|
2022-03-08 22:26:20 +01:00
|
|
|
in
|
|
|
|
{
|
2021-11-29 15:00:11 +01:00
|
|
|
home-manager.users.adrielus.programs.fish = {
|
|
|
|
inherit shellAliases;
|
2022-03-08 22:26:20 +01:00
|
|
|
|
|
|
|
shellInit = ''
|
|
|
|
source ${../../../dotfiles/fish/fish.conf}
|
|
|
|
'' ++ common.shellInit;
|
|
|
|
|
|
|
|
plugins = with pkgs; [ myFishPlugins.z myFishPlugins.vi-mode myFishPlugins.themes.agnoster ];
|
2020-04-12 18:57:47 +02:00
|
|
|
|
2021-11-29 15:00:11 +01:00
|
|
|
enable = true;
|
|
|
|
};
|
2020-04-12 18:57:47 +02:00
|
|
|
}
|