summaryrefslogtreecommitdiff
path: root/nvim/after
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/after')
-rw-r--r--nvim/after/ftplugin/markdown.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/nvim/after/ftplugin/markdown.lua b/nvim/after/ftplugin/markdown.lua
deleted file mode 100644
index 86af50e..0000000
--- a/nvim/after/ftplugin/markdown.lua
+++ /dev/null
@@ -1,5 +0,0 @@
-local map = vim.keymap.set
-local opts = { noremap = false, silent = true}
-
-map('', 'o', '<Plug>Markdown_NewLineBelow<Esc>', opts)
-map('', 'O', '<Plug>Markdown_NewLineAbove<Esc>', opts)