Remove enableShellIntegration flags as they're all on by default anyway
This commit is contained in:
parent
cc4bf59e73
commit
e0c2577138
|
@ -8,6 +8,7 @@
|
||||||
./git/default.nix
|
./git/default.nix
|
||||||
./ssh/default.nix
|
./ssh/default.nix
|
||||||
./nushell/default.nix
|
./nushell/default.nix
|
||||||
|
./zsh/default.nix
|
||||||
./starship/default.nix
|
./starship/default.nix
|
||||||
./bottom/default.nix
|
./bottom/default.nix
|
||||||
./config/default.nix
|
./config/default.nix
|
||||||
|
@ -20,20 +21,17 @@
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
bash.enable = true;
|
bash.enable = true;
|
||||||
|
carapace.enable = true;
|
||||||
|
fish.enable = true;
|
||||||
bat = {
|
bat = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config.theme = lib.mkIf config.stylix.targets.bat.enable "base16-stylix";
|
config.theme = lib.mkIf config.stylix.targets.bat.enable "base16-stylix";
|
||||||
};
|
};
|
||||||
carapace = {
|
|
||||||
enable = true;
|
|
||||||
enableBashIntegration = true;
|
|
||||||
enableNushellIntegration = true;
|
|
||||||
};
|
|
||||||
eza = {
|
eza = {
|
||||||
enable = true;
|
enable = true;
|
||||||
git = true;
|
git = true;
|
||||||
icons = true;
|
icons = true;
|
||||||
enableAliases = false;
|
enableAliases = true;
|
||||||
extraOptions = ["--octal-permissions"];
|
extraOptions = ["--octal-permissions"];
|
||||||
};
|
};
|
||||||
readline = {
|
readline = {
|
||||||
|
@ -46,12 +44,9 @@
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
enableBashIntegration = true;
|
|
||||||
enableNushellIntegration = true;
|
|
||||||
};
|
};
|
||||||
fzf = {
|
fzf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableBashIntegration = true;
|
|
||||||
defaultCommand = "${pkgs.fd}/bin/fd --type f";
|
defaultCommand = "${pkgs.fd}/bin/fd --type f";
|
||||||
changeDirWidgetCommand = "${pkgs.fd}/bin/fd --type d";
|
changeDirWidgetCommand = "${pkgs.fd}/bin/fd --type d";
|
||||||
fileWidgetCommand = "${pkgs.fd}/bin/fd --type f";
|
fileWidgetCommand = "${pkgs.fd}/bin/fd --type f";
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableBashIntegration = true;
|
|
||||||
enableNushellIntegration = true;
|
|
||||||
enableTransience = true;
|
enableTransience = true;
|
||||||
settings = {
|
settings = {
|
||||||
c = {symbol = " ";};
|
c = {symbol = " ";};
|
||||||
|
@ -103,7 +101,9 @@
|
||||||
disabled = false;
|
disabled = false;
|
||||||
format = "using [$indicator ]($style)";
|
format = "using [$indicator ]($style)";
|
||||||
bash_indicator = "#";
|
bash_indicator = "#";
|
||||||
|
fish_indicator = " ";
|
||||||
nu_indicator = "ν";
|
nu_indicator = "ν";
|
||||||
|
zsh_indicator = "z";
|
||||||
unknown_indicator = "?";
|
unknown_indicator = "?";
|
||||||
};
|
};
|
||||||
status = {};
|
status = {};
|
||||||
|
|
Loading…
Reference in a new issue