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 {
|
return {
|
||||||
|
root = vim.fn.stdpath "data" .. "/lazy",
|
||||||
spec = "plugins",
|
spec = "plugins",
|
||||||
|
lockfile = vim.fn.stdpath "data" .. "/lazy-lock.json",
|
||||||
dev = {
|
dev = {
|
||||||
path = "~/Projects/lua/nvim",
|
path = "~/Projects/lua/nvim",
|
||||||
},
|
},
|
||||||
install = {
|
install = {
|
||||||
colorscheme = {
|
colorscheme = { "catppuccin" },
|
||||||
"catppuccin",
|
|
||||||
"habamax",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
ui = {
|
ui = {
|
||||||
border = "rounded",
|
border = "rounded",
|
||||||
|
|
Loading…
Reference in a new issue