debug and problems
This commit is contained in:
@@ -40,8 +40,13 @@ return {
|
||||
},
|
||||
},
|
||||
{
|
||||
"williamboman/nvim-lsp-installer",
|
||||
|
||||
"williamboman/mason.nvim",
|
||||
config = function()
|
||||
require("plugins.config.mason")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
@@ -63,10 +68,47 @@ return {
|
||||
require("plugins.config.cmp")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"stevearc/conform.nvim",
|
||||
config = function()
|
||||
require("plugins.config.conform")
|
||||
end,
|
||||
},
|
||||
{
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.8',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||
},
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
config = function()
|
||||
require("plugins.config.trouble")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
config = function()
|
||||
require("plugins.config.whichkey")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
dependencies = {
|
||||
"rcarriga/nvim-dap-ui",
|
||||
"nvim-neotest/nvim-nio",
|
||||
"theHamsta/nvim-dap-virtual-text",
|
||||
"nvim-telescope/telescope-dap.nvim",
|
||||
},
|
||||
config = function()
|
||||
require("plugins.config.dap")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"Civitasv/cmake-tools.nvim",
|
||||
config = function()
|
||||
require("plugins.config.cmake")
|
||||
end,
|
||||
},
|
||||
{
|
||||
'nvimdev/indentmini.nvim',
|
||||
config = function()
|
||||
@@ -121,5 +163,16 @@ return {
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
"nickjvandyke/opencode.nvim",
|
||||
dependencies = {
|
||||
-- Recommended for `ask()` and `select()`.
|
||||
-- Required for `snacks` provider.
|
||||
---@module 'snacks' <- Loads `snacks.nvim` types for configuration intellisense.
|
||||
{ "folke/snacks.nvim", opts = { input = {}, picker = {}, terminal = {} } },
|
||||
},
|
||||
config = function()
|
||||
require("plugins.config.opencode")
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user