mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
fish: add preferAbbrs
option
This commit is contained in:
parent
7923c69152
commit
076c78eded
1 changed files with 10 additions and 0 deletions
|
@ -288,6 +288,16 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
preferAbbrs = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
example = true;
|
||||||
|
description = ''
|
||||||
|
If enabled, abbreviations will be preferred over aliases when
|
||||||
|
other modules define aliases for fish.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
shellInit = mkOption {
|
shellInit = mkOption {
|
||||||
type = types.lines;
|
type = types.lines;
|
||||||
default = "";
|
default = "";
|
||||||
|
|
Loading…
Reference in a new issue