mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
15 lines
296 B
Nix
15 lines
296 B
Nix
{
|
|
programs.nixvim.keymaps = [
|
|
{
|
|
key = "<space>fm";
|
|
action = "<cmd>lua vim.lsp.buf.format()<cr>";
|
|
options.desc = "LSP Format";
|
|
}
|
|
{
|
|
key = "<space>ft";
|
|
action = "vip:!pandoc -t commonmark_x<cr>";
|
|
options.desc = "Format markdown table";
|
|
}
|
|
];
|
|
}
|