nixos-configuration/jrpotter/neovim/lua/init/c.lua

33 lines
676 B
Lua
Raw Normal View History

local M = {}
function M.nvim_dap()
local dap = require('dap')
local key = 'codelldb'
dap.adapters[key] = {
type = 'server',
port = '${port}',
executable = {
command = 'codelldb',
args = {'--port', '${port}'},
},
}
dap.configurations.c = dap.configurations.c or {}
table.insert(dap.configurations.c, {
name = 'Launch Executable',
type = key,
request = 'launch',
program = function()
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
end,
cwd = '${workspaceFolder}',
})
end
function M.nvim_lspconfig()
require('init.lsp').setup(require('lspconfig').clangd) {}
end
return M