68 lines
1.5 KiB
Lua
68 lines
1.5 KiB
Lua
local plugins = {
|
|
{
|
|
"williamboman/mason.nvim",
|
|
opts = {
|
|
ensure_installed = {
|
|
"python-lsp-server",
|
|
"debugpy",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"Bekaboo/deadcolumn.nvim",
|
|
},
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
config = function ()
|
|
require "plugins.configs.lspconfig"
|
|
require "custom.configs.lspconfig"
|
|
end
|
|
},
|
|
{
|
|
"stevearc/vim-arduino",
|
|
ft = {"arduino"},
|
|
},
|
|
{
|
|
"rcarriga/nvim-dap-ui",
|
|
dependencies = "mfussenegger/nvim-dap",
|
|
config = function()
|
|
local dap = require("dap")
|
|
local dapui = require("dapui")
|
|
dapui.setup()
|
|
dap.listeners.after.event_initialized["dapui_config"] = function()
|
|
dapui.open()
|
|
end
|
|
dap.listeners.before.event_terminated["dapui_config"] = function()
|
|
dapui.close()
|
|
end
|
|
dap.listeners.before.event_exited["dapui_config"] = function()
|
|
dapui.close()
|
|
end
|
|
end
|
|
},
|
|
{
|
|
"mfussenegger/nvim-dap",
|
|
config = function(_, opts)
|
|
require("core.utils").load_mappings("dap")
|
|
end
|
|
},
|
|
{
|
|
"mfussenegger/nvim-dap-python",
|
|
ft = "python",
|
|
dependencies = {
|
|
"mfussenegger/nvim-dap",
|
|
"rcarriga/nvim-dap-ui",
|
|
},
|
|
config = function(_, opts)
|
|
local path = "~/.local/share/nvim/mason/packages/debugpy/venv/bin/python"
|
|
require("dap-python").setup(path)
|
|
require("core.utils").load_mappings("dap_python")
|
|
end,
|
|
},
|
|
{
|
|
"tpope/vim-fugitive",
|
|
lazy = false,
|
|
},
|
|
}
|
|
return plugins
|