more keybindings!!
This commit is contained in:
parent
90257dc9a5
commit
bb97adbf0e
3 changed files with 30 additions and 0 deletions
|
@ -20,4 +20,5 @@
|
|||
};
|
||||
|
||||
globals.mapleader = " ";
|
||||
|
||||
}
|
||||
|
|
|
@ -10,5 +10,28 @@
|
|||
};
|
||||
}
|
||||
|
||||
# barbar.nvim
|
||||
{
|
||||
mode = "n";
|
||||
action = "<cmd>BufferClose<cr>";
|
||||
key = "<leader><tab><tab>";
|
||||
options = {
|
||||
desc = "Close buffer";
|
||||
};
|
||||
}
|
||||
|
||||
{
|
||||
mode = "n";
|
||||
action = "<cmd>BufferOrderByName<cr>";
|
||||
key = "<leader><tab>sn";
|
||||
options = {
|
||||
desc = "Sort buffer tabs by name";
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
plugins.fzf-lua.keymaps = {
|
||||
"<leader><Space>" = "live_grep";
|
||||
"<leader>fg" = "git_files";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
plugins = {
|
||||
lsp = {
|
||||
|
@ -91,5 +92,10 @@
|
|||
};
|
||||
|
||||
lsp-lines.enable = true;
|
||||
|
||||
which-key = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue