[nvim] Update LSP and completion

This commit is contained in:
2025-08-12 16:01:38 -04:00
parent 486893c568
commit bb08dd5e38
2 changed files with 15 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ return {
api_key = 'TERM',
name = 'Llama.cpp',
end_point = 'http://localhost:1234/v1/completions',
model = 'qwen/qwen2.5-coder-14b',
model = 'qwen2.5-coder-7b-instruct',
optional = {
max_tokens = 56,
top_p = 0.9,

View File

@@ -14,7 +14,12 @@ return {
"williamboman/mason.nvim",
lazy = false,
config = function()
require("mason").setup()
require("mason").setup({
registries = {
"github:mason-org/mason-registry",
"github:Crashdummyy/mason-registry",
},
})
end
},
{
@@ -23,5 +28,13 @@ return {
opts = {
auto_install = true,
},
},
{
"seblyng/roslyn.nvim",
---@module 'roslyn.config'
---@type RoslynNvimConfig
opts = {
-- your configuration comes here; leave empty for default settings
},
}
}