This commit is contained in:
foozzi 2024-04-07 21:06:47 -04:00
parent e9400dcdcb
commit 289fa44c37
3 changed files with 9 additions and 0 deletions

View file

@ -1,9 +1,13 @@
-- inserting a link with a title
vim.api.nvim_set_keymap(
"n",
"<leader>mdp",
":lua require('utils.helpers').InsertMarkdownURL()<CR>",
{ silent = true, noremap = true }
)
-- formattig a markdown table
vim.api.nvim_set_keymap("n", "<leader>ftt", ":TableFormat<CR>", { silent = true, noremap = true })
vim.opt_local.textwidth = 79
vim.opt_local.wrap = true