diff options
| author | ache <ache@ache.one> | 2026-03-30 23:42:24 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-03-30 23:42:24 +0200 |
| commit | fcd3cf33ed9b254c3c145f89b386e8bd0ad65d5e (patch) | |
| tree | 67e3ff9b1f48354b10e3930ae523c8bd2cfdcfe5 /lua/ache/lazy.lua | |
| parent | fix: Migrate to surround v4 (diff) | |
Add debbugging tools plugins
Diffstat (limited to 'lua/ache/lazy.lua')
| -rw-r--r-- | lua/ache/lazy.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/ache/lazy.lua b/lua/ache/lazy.lua index 1800f12..15fc610 100644 --- a/lua/ache/lazy.lua +++ b/lua/ache/lazy.lua @@ -22,8 +22,9 @@ vim.opt.rtp:prepend(lazypath) require("lazy").setup({ { import = "ache.plugins.themes" }, { import = "ache.plugins" }, - { import = "ache.plugins.lsp" }, - { import = "ache.plugins.llm" }, + { import = "ache.plugins.lsp" }, -- Load Language Server Protocol plugins for code completion, diagnostics and context aware actions. + { import = "ache.plugins.llm" }, -- Load Large Language Models related plugins (Mostly code completion) + { import = "ache.plugins.dap" }, -- Load debugging tools, Debug Adapter Protocol }, { checker = { enabled = true, |