mirror of
https://github.com/Dannecron/nvchad-starter.git
synced 2025-12-25 11:52:35 +03:00
35 lines
871 B
Lua
35 lines
871 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 = "",
|
|
},
|
|
},
|
|
{
|
|
'MeanderingProgrammer/render-markdown.nvim',
|
|
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.icons' }, -- if you use standalone mini plugins
|
|
ft = { "markdown", "vimwiki" },
|
|
---@module 'render-markdown'
|
|
---@type render.md.UserConfig
|
|
opts = {
|
|
render_modes = { 'n', 'c', 't' },
|
|
},
|
|
}
|
|
}
|