diff options
Diffstat (limited to 'lua/lvim/plugins.lua')
| -rw-r--r-- | lua/lvim/plugins.lua | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 387bcee3..c315cdd9 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -235,6 +235,15 @@ local core_plugins = {      disable = not lvim.builtin.dap.active,    }, +  -- Debugger user interface +  { +    "rcarriga/nvim-dap-ui", +    config = function() +      require("lvim.core.dap").setup_ui() +    end, +    disable = not lvim.builtin.dap.active, +  }, +    -- alpha    {      "goolord/alpha-nvim", | 
