Files
nvchad-starter/lua/plugins/init.lua
2025-10-25 13:06:43 +07:00

25 lines
540 B
Lua

return {
{
"stevearc/conform.nvim",
-- event = 'BufWritePre', -- uncomment for format on save
opts = require "configs.conform",
},
-- These are some examples, uncomment them if you want to see them work!
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
},
{
"mistweaverco/kulala.nvim",
ft = {"http", "rest"},
opts = {
global_keymaps = true,
global_keymaps_prefix = "<leader>k",
kulala_keymaps_prefix = "",
},
},
}