2 files changed,
10 insertions(+),
7 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2022-10-27 15:46:20 +0300
Parent:
ba600c7
jump to
| M | lua/configs/dap/langs/python.lua |
| M | lua/plugins.lua |
M
lua/configs/dap/langs/python.lua
@@ -5,11 +5,13 @@ command = "python",
args = { "-m", "debugpy.adapter" }, } - dap.configurations.python = { { - type = "python", - request = "launch", - name = "Launch file", - program = "${file}", - pythonPath = "python", - } } + dap.configurations.python = { + { + type = "python", + request = "launch", + name = "Launch file", + program = "${file}", + pythonPath = "python", + }, + } end
M
lua/plugins.lua
@@ -52,6 +52,7 @@ "karb94/neoscroll.nvim",
config = u.get.setup "neoscroll", keys = { "<C-u>", "<C-d>", "<C-b>", "<C-f>", "<C-y>", "<C-e>" }, } + -- git use { "lewis6991/gitsigns.nvim",