Add nix shell detection to tide

This commit is contained in:
Natsu Kagami 2021-12-08 17:13:43 -05:00
parent a4acdec715
commit 091897fbca
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
2 changed files with 99 additions and 64 deletions

View file

@ -0,0 +1,21 @@
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.programs.fish.tide.nix-shell;
in
{
options.programs.fish.tide.nix-shell = {
enable = mkEnableOption "An indicator of having a `nix shell` environment";
};
config.programs.fish = mkIf cfg.enable {
functions._tide_item_nix_shell = ''
if string match -q "/nix/store/*" $PATH
set -U tide_nix_shell_color blue
set -U tide_nix_shell_bg_color normal
_tide_print_item nix_shell ""
end
'';
};
}