Fix lazy writing locking file to nix directory
Add readline config to nix for case-insensitive shell matching
This commit is contained in:
parent
65e9689122
commit
867988106b
10
nixos/home/env/readline.nix
vendored
Normal file
10
nixos/home/env/readline.nix
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.readline = {
|
||||
enable = true;
|
||||
includeSystemConfig = true;
|
||||
extraConfig = ''
|
||||
set completion-ignore-case On
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -1,13 +1,12 @@
|
|||
return {
|
||||
root = vim.fn.stdpath "data" .. "/lazy",
|
||||
spec = "plugins",
|
||||
lockfile = vim.fn.stdpath "data" .. "/lazy-lock.json",
|
||||
dev = {
|
||||
path = "~/Projects/lua/nvim",
|
||||
},
|
||||
install = {
|
||||
colorscheme = {
|
||||
"catppuccin",
|
||||
"habamax",
|
||||
},
|
||||
colorscheme = { "catppuccin" },
|
||||
},
|
||||
ui = {
|
||||
border = "rounded",
|
||||
|
|
Loading…
Reference in a new issue