mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
21 lines
501 B
Nix
21 lines
501 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
xdg.configFile."inputrc".text = ''
|
|
set editing-mode vi
|
|
set keyseq-timeout 1
|
|
set mark-symlinked-directories on
|
|
set completion-prefix-display-length 8
|
|
set show-all-if-ambiguous on
|
|
set show-all-if-unmodified on
|
|
set visible-stats on
|
|
set colored-stats on
|
|
set bell-style audible
|
|
set meta-flag on
|
|
set input-meta on
|
|
set convert-meta off
|
|
set output-meta on
|
|
'';
|
|
|
|
home.sessionVariables.INPUTRC = "${config.xdg.configHome}/inputrc";
|
|
}
|