mirror of
https://github.com/akr2002/nv.git
synced 2025-02-05 18:40:01 +00:00
18 lines
237 B
Nix
18 lines
237 B
Nix
|
{
|
||
|
globals.mapleader = " ";
|
||
|
|
||
|
keymaps = [
|
||
|
# General maps
|
||
|
{
|
||
|
mode = "n";
|
||
|
key = "<leader>f";
|
||
|
action = "+find/file";
|
||
|
}
|
||
|
{
|
||
|
mode = "n";
|
||
|
key = "<leader>s";
|
||
|
action = "+search";
|
||
|
}
|
||
|
];
|
||
|
}
|