This is a static render of the Sixohthree Wiki

Neovim

30th March 2026 at 11:41am

Fixing digraphs in Lazyvim

blink.cmp fucks up digraphs. Add this to your config to unbind ^K:

return {
  {
    "saghen/blink.cmp",
    opts = {
      keymap = {
        ["<C-K>"] = {}, -- do not override digraph key
      },
    }
  }
}