12 lines
179 B
Nix
12 lines
179 B
Nix
{
|
|
programs.readline = {
|
|
enable = true;
|
|
|
|
variables = {
|
|
editing-mode = "vi";
|
|
completion-ignore-case = "on";
|
|
enable-bracketed-paste = "on";
|
|
};
|
|
};
|
|
}
|