aboutsummaryrefslogtreecommitdiff
path: root/modules/neovim/nvim/after/ftplugin
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2026-03-18 15:52:33 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2026-03-18 15:52:33 -0400
commit02b143f5342cc5354e669ca5e214d7ae464b1888 (patch)
treec37aa38e4fa640e83f8e63bc7d67b796c9df83e9 /modules/neovim/nvim/after/ftplugin
parent3d4fdb83cca2d16d064eef02aaedb2fdc7e7ace7 (diff)
downloadhome-02b143f5342cc5354e669ca5e214d7ae464b1888.tar.gz
modules: various fixes
Diffstat (limited to 'modules/neovim/nvim/after/ftplugin')
-rw-r--r--modules/neovim/nvim/after/ftplugin/markdown.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/neovim/nvim/after/ftplugin/markdown.lua b/modules/neovim/nvim/after/ftplugin/markdown.lua
index 849f933..3cc5d65 100644
--- a/modules/neovim/nvim/after/ftplugin/markdown.lua
+++ b/modules/neovim/nvim/after/ftplugin/markdown.lua
@@ -2,8 +2,8 @@ vim.opt.wrap = true
vim.opt.number = false
vim.opt.relativenumber = false
-vim.keymap.set({'n', 'v'}, 'n', 'g<Down>', { buffer = true })
-vim.keymap.set({'n', 'v'}, 'e', 'g<Up>', { buffer = true })
+vim.keymap.set({'n', 'v'}, '<C-n>', 'g<Down>', { buffer = true })
+vim.keymap.set({'n', 'v'}, '<C-p>', 'g<Up>', { buffer = true })
vim.opt.statusline="%f"
vim.opt_local.conceallevel=3