/ dev / init.lua.tpl
init.lua.tpl
 1  local path = vim.fn.expand("<sfile>:h") .. "/.."
 2  vim.cmd.cd(path)
 3  vim.opt.runtimepath:append(path)
 4  
 5  vim.opt.number = true
 6  vim.opt.relativenumber = true
 7  
 8  require("kak").setup({
 9    experimental = {
10      rebind_visual_aiAI = true,
11    },
12  })
13  -- vim: ft=lua