This commit is contained in:
2024-06-14 17:21:27 -05:00
parent 6cac27c6eb
commit 8089a60e3d
5 changed files with 46 additions and 14 deletions

View File

@@ -61,7 +61,20 @@ return {
{
"tpope/vim-fugitive",
},
-- Golang
{
"nvim-tree/nvim-tree.lua",
opts = {
filters = {
enable = false,
},
},
},
{
"TheLeoP/powershell.nvim",
opts = {
bundle_path = vim.fn.stdpath "data" .. "/man/packages/powershell-editor-services",
},
},
{
"olexsmir/gopher.nvim",
ft = "go",
@@ -72,7 +85,17 @@ return {
vim.cmd [[silent! GoInstallDeps]]
end,
},
-- Dap
{
"dreamsofcode-io/nvim-dap-go",
ft = "go",
dependencies = {
"mfussenegger/nvim-dap",
"rcarriga/nvim-dap-ui",
},
config = function(_, opts)
require("dap-go").setup(opts)
end,
},
{
"mfussenegger/nvim-dap",
},
@@ -97,16 +120,4 @@ return {
end
end,
},
{
"dreamsofcode-io/nvim-dap-go",
ft = "go",
dependencies = {
"mfussenegger/nvim-dap",
"rcarriga/nvim-dap-ui",
},
config = function(_, opts)
require("dap-go").setup(opts)
-- require("core.utils").load_mappings "dap_go"
end,
},
}