feat: convert to blink, major lsp changes, lualine

This commit is contained in:
Jason Miller 2025-06-12 12:27:51 +09:00
parent 82102e5e29
commit 51ab444c0d
44 changed files with 1387 additions and 700 deletions

37
lua/lsp/clangd.lua Normal file
View file

@ -0,0 +1,37 @@
local tools = require 'utils.tools'
-- Get LSP capabilities with cmp support
local capabilities = tools.get_lsp_capabilities()
-- Setup clangd LSP using autocmd
vim.api.nvim_create_autocmd('FileType', {
pattern = { 'c', 'cpp', 'h', 'hpp' },
callback = function()
local clangd_path = tools.find_executable 'clangd'
if clangd_path then
vim.lsp.start {
name = 'clangd',
cmd = {
clangd_path,
'--background-index',
'--clang-tidy',
'--header-insertion=iwyu',
'--completion-style=detailed',
'--function-arg-placeholders',
'--fallback-style=llvm',
},
root_dir = vim.fs.dirname(vim.fs.find({ 'compile_commands.json', 'compile_flags.txt', '.clangd', '.git' }, { upward = true })[1]),
capabilities = capabilities,
init_options = {
usePlaceholders = true,
completeUnimported = true,
clangdFileStatus = true,
},
}
end
end,
})
-- Return empty config since we handle clangd LSP manually via autocmd above
return {}