From 469864dd501a0e94d7484dacdb80d1dd78601b18 Mon Sep 17 00:00:00 2001 From: Nathan Date: Tue, 18 Mar 2025 11:30:16 -0500 Subject: [PATCH] change deprecated settings --- config/default.nix | 59 +++++++++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/config/default.nix b/config/default.nix index 08e2b0c..ee6775d 100644 --- a/config/default.nix +++ b/config/default.nix @@ -228,44 +228,45 @@ ]; }; - extensions = { - # Creates a beautiful debugger UI - dap-ui = { - enable = true; + }; - # Set icons to characters that are more likely to work in every terminal. - # Feel free to remove or use ones that you like more! :) - # Don't feel like these are good choices. + dap-ui = { + enable = true; + + # Set icons to characters that are more likely to work in every terminal. + # Feel free to remove or use ones that you like more! :) + # Don't feel like these are good choices. + settings = { icons = { - expanded = "▾"; - collapsed = "▸"; - current_frame = "*"; + expanded = "▾"; + collapsed = "▸"; + current_frame = "*"; }; controls = { - icons = { - pause = "⏸"; - play = "▶"; - step_into = "⏎"; - step_over = "⏭"; - step_out = "⏮"; - step_back = "b"; - run_last = "▶▶"; - terminate = "⏹"; - disconnect = "⏏"; - }; + icons = { + pause = "⏸"; + play = "▶"; + step_into = "⏎"; + step_over = "⏭"; + step_out = "⏮"; + step_back = "b"; + run_last = "▶▶"; + terminate = "⏹"; + disconnect = "⏏"; + }; }; - }; - - dap-virtual-text.enable = true; - - # Add debuggers here? - dap-python = { - enable = true; - }; }; }; + dap-virtual-text.enable = true; + + # Add debuggers here + dap-python = { + enable = true; + }; + + dap-lldb = { enable = true; settings.codelldb_path = "${pkgs.vscode-extensions.vadimcn.vscode-lldb}/share/vscode/extensions/vadimcn.vscode-lldb/adapter/codelldb";