Add vdebug

This commit is contained in:
2025-01-04 02:21:11 +01:00
parent a8c4ea36cc
commit 1aaa41fc42
15 changed files with 30 additions and 40 deletions

View File

@ -29,12 +29,3 @@ function default_on_attach(client, bufnr)
nnoremap('gr', vim.lsp.buf.references, "Find references")
nnoremap('<space>f', function() vim.lsp.buf.format { async = true } end, "Format file")
end
function read_configuration()
local configuration = {}
local chunk, err = loadfile(os.getenv('HOME') .. '/.config/nvim/config', 't', configuration)
if chunk then
chunk()
end
return configuration
end