Re-add keymaps to change text to a list
Some checks are pending
/ check (push) Waiting to run

This commit is contained in:
Oliver Davies 2025-09-22 19:23:55 +01:00
parent ef65f85a78
commit d204c9981a

View file

@ -8,6 +8,10 @@
vim.opt_local.linebreak = true
vim.opt_local.makeprg = "${lib.getExe pkgs.asciidoctor} %"
vim.opt_local.spell = true
-- Convert lines into a list.
vim.keymap.set("n", "<leader>l", "vip:norm I* <CR>")
vim.keymap.set("v", "<leader>l", ":norm I* <CR>")
'';
};
}