Fix lazy writing locking file to nix directory

Add readline config to nix for case-insensitive shell matching
This commit is contained in:
Evie Litherland-Smith 2023-05-04 12:06:01 +01:00
parent 65e9689122
commit 867988106b
2 changed files with 13 additions and 4 deletions

10
nixos/home/env/readline.nix vendored Normal file
View file

@ -0,0 +1,10 @@
{ ... }:
{
programs.readline = {
enable = true;
includeSystemConfig = true;
extraConfig = ''
set completion-ignore-case On
'';
};
}

View file

@ -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",