chore(natalie): remove keybinds.nix
these keybinds are all superceded in the shared config
This commit is contained in:
parent
b34edc3a51
commit
d0037cbf0e
2 changed files with 0 additions and 20 deletions
|
@ -1,7 +1,6 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./keybinds.nix
|
|
||||||
./languages.nix
|
./languages.nix
|
||||||
./latex.nix
|
./latex.nix
|
||||||
./visuals.nix
|
./visuals.nix
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
let
|
|
||||||
mkKeymap = mode: key: action: desc: {
|
|
||||||
inherit mode;
|
|
||||||
inherit key action desc;
|
|
||||||
};
|
|
||||||
n = mkKeymap "n"; # normal mode
|
|
||||||
in
|
|
||||||
{
|
|
||||||
vim = {
|
|
||||||
keymaps = [
|
|
||||||
(n "<leader>e" ":lua require('snacks').explorer()<CR>" "File Explorer")
|
|
||||||
# Snacks Picker Replaces Telescope!?
|
|
||||||
(n "<leader><space>" ":lua require('snacks').picker.smart()<CR>" "Smart Find Files")
|
|
||||||
(n "<leader>ff" ":lua require('snacks').picker.files()<CR>" "Find File")
|
|
||||||
(n "<leader>fg" ":lua require('snacks').picker.grep()<CR>" "Grep Files")
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue