Fix neovim highlighting

This commit is contained in:
Martin Pander
2026-05-08 20:55:41 +02:00
parent c092fdeb48
commit 15c019b4df
7 changed files with 121 additions and 52 deletions

View File

@@ -80,7 +80,7 @@ cmp.setup({
sources = cmp.config.sources({
{ name = 'nvim_lsp', priority = 1000 },
{ name = 'buffer', priority = 800, keyword_length = 2 },
{ name = 'copilot', priority = 700 },
-- { name = 'copilot', priority = 700 },
{ name = 'path', priority = 600 },
{ name = 'cmp_yanky', priority = 500 },
{ name = 'git', priority = 400 },
@@ -100,9 +100,9 @@ cmp.setup({
latex_symbols = "[tex]",
path = "[path]",
cmp_yanky = "[yank]",
copilot = "[copilot]",
-- copilot = "[copilot]",
}),
symbol_map = { Copilot = "" }
-- symbol_map = { Copilot = "" }
}),
},
})
@@ -241,14 +241,14 @@ require('lualine').setup({
})
require("copilot").setup({
suggestion = { enabled = false },
panel = { enabled = false },
})
require("copilot_cmp").setup()
require("CopilotChat").setup {
model = 'claude-3.7-sonnet',
}
-- require("copilot").setup({
-- suggestion = { enabled = false },
-- panel = { enabled = false },
-- })
-- require("copilot_cmp").setup()
-- require("CopilotChat").setup {
-- model = 'claude-3.7-sonnet',
-- }
vim.g.bullets_enabled_file_types = {
'markdown',