Anyone using #NvChad and writing in Dutch? You may have come across the peculiar behaviour of #Neovim exiting Insert mode when typing the letters j, and k, consecutively. Pretty annoying when using the -(e)lijk suffix (e.g. begrijpelijk, namelijk, wezenlijk), which is pretty common in Dutch.
I found the following line in ~/.config/nvim/lua/mappings.lua to be the culprit: map("i", "jk", "<ESC>")
You can either comment out or remove that line. Hope that helps.
NvChad Insert mode 'jk' mapping interfering with Dutch '-(e)lijk' suffix
Anyone using NvChad and writing in Dutch? You may have come across the peculiar behaviour of Neovim exiting Insert mode when typing the letters j, and k, consecutively. Pretty annoying when using the -(e)lijk suffix (e.g. begrijpelijk, namelijk, wezenlijk), which is pretty common in Dutch. I found the following line (8) in ~/.config/nvim/lua/mappings.lua to be the culprit: 1 2 3 4 5 6 7 8 9 10 require "nvchad.mappings" -- add yours here local map = vim.keymap.set map("n", ";", ":", { desc = "CMD enter command mode" }) map("i", "jk", "<ESC>") -- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")


