From f784b3e3b5b6cd740eefc26144348bfc6f58d78e Mon Sep 17 00:00:00 2001 From: ottjk Date: Sun, 7 Jan 2024 14:02:16 -0500 Subject: nvim markdown things --- nvim/after/ftplugin/markdown.lua | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 nvim/after/ftplugin/markdown.lua (limited to 'nvim/after/ftplugin/markdown.lua') diff --git a/nvim/after/ftplugin/markdown.lua b/nvim/after/ftplugin/markdown.lua new file mode 100644 index 0000000..86af50e --- /dev/null +++ b/nvim/after/ftplugin/markdown.lua @@ -0,0 +1,5 @@ +local map = vim.keymap.set +local opts = { noremap = false, silent = true} + +map('', 'o', 'Markdown_NewLineBelow', opts) +map('', 'O', 'Markdown_NewLineAbove', opts) -- cgit v1.3