feat(nvim): Add kulala.nvim

This commit is contained in:
2026-05-24 20:07:19 +01:00
parent 7cdd5ce3dd
commit caba20e93c
+11
View File
@@ -119,6 +119,7 @@ vim.pack.add({
'https://github.com/folke/todo-comments.nvim', 'https://github.com/folke/todo-comments.nvim',
'https://github.com/nvim-lua/plenary.nvim', 'https://github.com/nvim-lua/plenary.nvim',
'https://github.com/nvim-tree/nvim-web-devicons', 'https://github.com/nvim-tree/nvim-web-devicons',
'https://github.com/mistweaverco/kulala.nvim'
}) })
-- NVIM 0.12 EXPERIMENTAL -- NVIM 0.12 EXPERIMENTAL
@@ -236,6 +237,16 @@ vim.keymap.set('n', '<leader>fb', fzflua.buffers)
vim.keymap.set('n', '<leader>fh', fzflua.help_tags) vim.keymap.set('n', '<leader>fh', fzflua.help_tags)
vim.keymap.set({ 'n', 'v' }, '<leader>fc', fzflua.commands) vim.keymap.set({ 'n', 'v' }, '<leader>fc', fzflua.commands)
-- kulala --
require("kulala").setup({
global_keymaps = true,
global_keymaps_prefix = "<leader>R",
kulala_keymaps_prefix = "<leader>",
ui = {
max_response_size = 1000000
}
})
-- lsp -- -- lsp --
vim.api.nvim_create_autocmd("FileType", { vim.api.nvim_create_autocmd("FileType", {
pattern = "lua", pattern = "lua",