mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-11 12:43:28 +00:00
feat: option to autostart debugger UI
This commit is contained in:
parent
640e37bd08
commit
595e76ed2f
2 changed files with 32 additions and 12 deletions
|
@ -7,17 +7,32 @@ with lib;
|
|||
with builtins; let
|
||||
cfg = config.vim.debugger.nvim-dap;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
vim.startPlugins =
|
||||
[
|
||||
"nvim-dap"
|
||||
]
|
||||
++ optionals cfg.ui.enable [
|
||||
"nvim-dap-ui"
|
||||
];
|
||||
config = mkMerge [
|
||||
(mkIf cfg.enable {
|
||||
vim.startPlugins = ["nvim-dap"];
|
||||
|
||||
vim.luaConfigRC.nvim-dap-ui = nvim.dag.entryAnywhere ''
|
||||
require("dapui").setup()
|
||||
'';
|
||||
};
|
||||
vim.luaConfigRC.nvim-dap =
|
||||
nvim.dag.entryAnywhere ''
|
||||
'';
|
||||
})
|
||||
(mkIf (cfg.enable && cfg.ui.enable) {
|
||||
vim.startPlugins = ["nvim-dap-ui"];
|
||||
|
||||
vim.luaConfigRC.nvim-dap-ui = nvim.dag.entryAfter ["nvim-dap"] (''
|
||||
local dapui = require("dapui")
|
||||
require("dapui").setup()
|
||||
''
|
||||
+ optionalString cfg.ui.autoStart ''
|
||||
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
|
||||
'');
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue