more work on neovim config, added keyboard sound thing for kitty

This commit is contained in:
2026-03-08 03:57:31 -04:00
parent bf22e791d1
commit 4308b8eb16
55 changed files with 411 additions and 142 deletions

View File

@@ -0,0 +1,33 @@
{
programs.nixvim = {
plugins.noice = {
enable = true;
settings = {
views = {
popupmenu = {
relative = "cursor";
position = {
row = -2;
col = -2;
};
size = {
width = 60;
height = "auto";
};
};
cmdline_popup = {
relative = "cursor";
position = {
row = 0;
col = -2;
};
size = {
width = 60;
height = "auto";
};
};
};
};
};
};
}