updates
This commit is contained in:
@ -21,6 +21,7 @@
|
||||
"lazyvim.plugins.extras.lang.markdown",
|
||||
"lazyvim.plugins.extras.lang.nix",
|
||||
"lazyvim.plugins.extras.lang.python",
|
||||
"lazyvim.plugins.extras.lang.svelte",
|
||||
"lazyvim.plugins.extras.lang.typescript",
|
||||
"lazyvim.plugins.extras.linting.eslint",
|
||||
"lazyvim.plugins.extras.test.core",
|
||||
|
@ -6,6 +6,9 @@ return {
|
||||
-- add any opts here
|
||||
-- for example
|
||||
provider = "ollama",
|
||||
behaviour = {
|
||||
enable_cursor_planning_mode = true, -- enable cursor planning mode!
|
||||
},
|
||||
ollama = {
|
||||
endpoint = "http://gpu.dighist.geschichte.hu-berlin.de:11434",
|
||||
model = "cogito:14b", -- your desired model (or use gpt-4o, etc.)
|
||||
@ -15,7 +18,23 @@ return {
|
||||
stream = true,
|
||||
thinking = true,
|
||||
system_prompt = "Enable deep thinking subroutine.",
|
||||
--reasoning_effort = "medium", -- low|medium|high, only used for reasoning models
|
||||
-- reasoning_effort = "high", -- low|medium|high, only used for reasoning models
|
||||
},
|
||||
rag_service = {
|
||||
enabled = true, -- Enables the RAG service
|
||||
host_mount = os.getenv("HOME"), -- Host mount path for the rag service
|
||||
provider = "ollama", -- The provider to use for RAG service (e.g. openai or ollama)
|
||||
llm_model = "qwen3:32b", -- The LLM model to use for RAG service
|
||||
embed_model = "nomic-embed-text", -- The embedding model to use for RAG service
|
||||
endpoint = "http://gpu.dighist.geschichte.hu-berlin.de:11434", -- The API endpoint for RAG service
|
||||
},
|
||||
vendors = {
|
||||
deepthink = {
|
||||
__inherited_from = "ollama",
|
||||
model = "qwen3:32b",
|
||||
max_completion_tokens = 40000,
|
||||
reasoning_effort = "high",
|
||||
},
|
||||
},
|
||||
},
|
||||
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
||||
|
@ -28,7 +28,7 @@ return {
|
||||
-- the maximum total characters of the context before and after the cursor
|
||||
-- 16000 characters typically equate to approximately 4,000 tokens for
|
||||
-- LLMs.
|
||||
context_window = 4000,
|
||||
context_window = 32000,
|
||||
-- when the total characters exceed the context window, the ratio of
|
||||
-- context before cursor and after cursor, the larger the ratio the more
|
||||
-- context before cursor will be used. This option should be between 0 and
|
||||
|
19
nvim-config/lua/plugins/test.lua
Normal file
19
nvim-config/lua/plugins/test.lua
Normal file
@ -0,0 +1,19 @@
|
||||
return {
|
||||
{ "nvim-neotest/neotest-plenary", "nvim-neotest/neotest-jest" },
|
||||
{
|
||||
"nvim-neotest/neotest",
|
||||
opts = {
|
||||
adapters = {
|
||||
"neotest-plenary",
|
||||
["neotest-jest"] = {
|
||||
jestCommand = "npm test --",
|
||||
jestConfigFile = "custom.jest.config.ts",
|
||||
env = { CI = true },
|
||||
cwd = function(_)
|
||||
return vim.fn.getcwd()
|
||||
end,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user