From 951c29c4c8de4162e917e3af16b07290845ff159 Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Tue, 8 Oct 2024 10:59:46 +0200 Subject: [PATCH] nvim changes --- nvim/init.lua | 6 +++--- nvim/lua/custom/plugins/supermaven.lua | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 nvim/lua/custom/plugins/supermaven.lua diff --git a/nvim/init.lua b/nvim/init.lua index ec75f7c..75b45c8 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -832,9 +832,9 @@ require('lazy').setup({ model = 'dolphin-llama3', -- The default model to use. host = 'localhost', -- The host running the Ollama service. port = '11434', -- The port on which the Ollama service is listening. - display_mode = 'split', -- The display mode. Can be "float" or "split". - show_prompt = false, -- Shows the Prompt submitted to Ollama. - show_model = false, -- Displays which model you are using at the beginning of your chat session. + display_mode = 'float', -- The display mode. Can be "float" or "split". + show_prompt = true, -- Shows the Prompt submitted to Ollama. + show_model = true, -- Displays which model you are using at the beginning of your chat session. no_auto_close = false, -- Never closes the window automatically. init = function(options) pcall(io.popen, 'ollama serve > /dev/null 2>&1 &') diff --git a/nvim/lua/custom/plugins/supermaven.lua b/nvim/lua/custom/plugins/supermaven.lua new file mode 100644 index 0000000..75d8fed --- /dev/null +++ b/nvim/lua/custom/plugins/supermaven.lua @@ -0,0 +1,6 @@ +return { + 'supermaven-inc/supermaven-nvim', + config = function() + require('supermaven-nvim').setup {} + end, +}