mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-03 09:59:25 +00:00
[neovim] Remove render-markdown plugin and add follow-md-links
This commit is contained in:
@ -56,6 +56,8 @@ keymap(
|
||||
vim.tbl_extend("force", opts, { desc = "Navigate to the previous buffer on the left" })
|
||||
)
|
||||
|
||||
keymap("n", "<bs>", ":edit #<cr>", vim.tbl_extend("force", opts, { desc = "Back to previous file", silent = true }))
|
||||
|
||||
-- Clear highlights
|
||||
keymap("n", "<leader>h", "<cmd>nohlsearch<cr>", vim.tbl_extend("force", opts, { desc = "Clear search highlights" }))
|
||||
|
||||
@ -299,11 +301,3 @@ keymap(
|
||||
"<cmd>lua require'ufo'.peekFoldedLinesUnderCursor()<cr>",
|
||||
vim.tbl_extend("force", opts, { desc = "Peek fold" })
|
||||
)
|
||||
|
||||
-- Markdown
|
||||
keymap(
|
||||
"n",
|
||||
"<leader>m",
|
||||
":RenderMarkdown toggle<cr>",
|
||||
vim.tbl_extend("force", opts, { desc = "Toggle markdown rendering" })
|
||||
)
|
||||
|
Reference in New Issue
Block a user