|
3 | 3 | -- - make the virt lines thing available if ppl want it |
4 | 4 | -- - find the nearest codelens above cursor |
5 | 5 |
|
| 6 | +-- Must Show: |
| 7 | +-- - Connect to an existing neovim instance, and step through some plugin |
| 8 | +-- - Connect using configuration from VS **** json file (see if VS **** is actually just "it works" LUL) |
| 9 | +-- - Completion in the repl, very cool for exploring objects / data |
| 10 | + |
| 11 | +-- - Generating your own config w/ dap.run (can show rust example) (rust BTW) |
| 12 | + |
6 | 13 | local has_dap, dap = pcall(require, "dap") |
7 | 14 | if not has_dap then |
8 | 15 | return |
9 | 16 | end |
10 | 17 |
|
| 18 | +vim.fn.sign_define("DapBreakpoint", { text = "ß", texthl = "", linehl = "", numhl = "" }) |
| 19 | +vim.fn.sign_define("DapBreakpointCondition", { text = "ü", texthl = "", linehl = "", numhl = "" }) |
| 20 | +-- Setup cool Among Us as avatar |
| 21 | +vim.fn.sign_define("DapStopped", { text = "ඞ", texthl = "Error" }) |
| 22 | + |
11 | 23 | require("nvim-dap-virtual-text").setup { |
12 | 24 | enabled = true, |
13 | 25 |
|
@@ -341,6 +353,11 @@ dap.configurations.python = { |
341 | 353 |
|
342 | 354 | local dap_python = require "dap-python" |
343 | 355 | dap_python.setup("python", { |
| 356 | + -- So if configured correctly, this will open up new terminal. |
| 357 | + -- Could probably get this to target a particular terminal |
| 358 | + -- and/or add a tab to kitty or something like that as well. |
| 359 | + console = "externalTerminal", |
| 360 | + |
344 | 361 | include_configs = true, |
345 | 362 | }) |
346 | 363 |
|
|
0 commit comments