mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01: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 {
|
||||
type = types.lines;
|
||||
default = "";
|
||||
|
|
Loading…
Reference in a new issue