add nixvim

This commit is contained in:
2026-07-30 03:43:53 +02:00
parent 438ce4c58e
commit 0b73b99654
6 changed files with 191 additions and 15 deletions
+23
View File
@@ -0,0 +1,23 @@
{
programs.nixvim = {
globals = {
mapleader = " ";
};
keymaps = [
{
action = "<cmd>lua Snacks.explorer.open()<CR>";
key = "<leader>e";
}
{
mode = [
"n"
"x"
"o"
];
action = ''<cmd>lua require("flash").jump()<CR>'';
key = "s";
}
];
};
}