[nvim] Update LSP and completion
This commit is contained in:
@@ -22,7 +22,7 @@ return {
|
|||||||
api_key = 'TERM',
|
api_key = 'TERM',
|
||||||
name = 'Llama.cpp',
|
name = 'Llama.cpp',
|
||||||
end_point = 'http://localhost:1234/v1/completions',
|
end_point = 'http://localhost:1234/v1/completions',
|
||||||
model = 'qwen/qwen2.5-coder-14b',
|
model = 'qwen2.5-coder-7b-instruct',
|
||||||
optional = {
|
optional = {
|
||||||
max_tokens = 56,
|
max_tokens = 56,
|
||||||
top_p = 0.9,
|
top_p = 0.9,
|
||||||
|
|||||||
@@ -14,7 +14,12 @@ return {
|
|||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
config = function()
|
config = function()
|
||||||
require("mason").setup()
|
require("mason").setup({
|
||||||
|
registries = {
|
||||||
|
"github:mason-org/mason-registry",
|
||||||
|
"github:Crashdummyy/mason-registry",
|
||||||
|
},
|
||||||
|
})
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -23,5 +28,13 @@ return {
|
|||||||
opts = {
|
opts = {
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"seblyng/roslyn.nvim",
|
||||||
|
---@module 'roslyn.config'
|
||||||
|
---@type RoslynNvimConfig
|
||||||
|
opts = {
|
||||||
|
-- your configuration comes here; leave empty for default settings
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user