Integrate neovim config into home-manager, separate external configs under config/

This commit is contained in:
2026-04-07 18:28:22 +02:00
parent d9ef3b056e
commit 5403b4988e
49 changed files with 7286 additions and 50 deletions

View File

@@ -0,0 +1,30 @@
local dap = require('dap')
local dap_python = require('dap-python')
dap_python.setup('uv') -- or wherever your debugpy-enabled python is
dap.adapters.python = {
type = 'server',
host = '127.0.0.1',
port = 5678,
}
dap.configurations.python = {
{
type = 'python',
request = 'attach',
name = "Attach to remote",
connect = {
host = "127.0.0.1",
port = 5678,
},
mode = "remote",
pathMappings = {
{
localRoot = vim.fn.getcwd(),
remoteRoot = "/home/mmc-user/fair-psgg"
}
},
},
}