repos / dotfiles

my dotfiles

commit
30639ff
parent
8dd4fed
author
Eric Bower
date
2025-02-02 09:38:21 -0500 EST
chore: rm minuet
2 files changed,  +0, -41
M dot_config/nvim/lua/plugin_config.lua
+0, -1
1@@ -78,7 +78,6 @@ function setup_comp()
2     },
3     sources = {
4       { name = 'nvim_lsp' },
5-      { name = 'minuet' },
6     },
7     performance = {
8       -- It is recommended to increase the timeout duration due to
M dot_config/nvim/lua/plugins.lua
+0, -40
 1@@ -118,46 +118,6 @@ require("lazy").setup({
 2         require'lualine'.setup({})
 3       end
 4     },
 5-    {
 6-      'milanglacier/minuet-ai.nvim',
 7-      config = function()
 8-        require('minuet').setup {
 9-          provider = 'openai_fim_compatible',
10-          n_completions = 1, -- recommend for local model for resource saving
11-          -- I recommend you start with a small context window firstly, and gradually
12-          -- increase it based on your local computing power.
13-          context_window = 512,
14-          provider_options = {
15-            openai_fim_compatible = {
16-              api_key = 'TERM',
17-              name = 'Ollama',
18-              end_point = 'http://192.168.88.224:11434/v1/completions',
19-              model = 'deepseek-r1:14b',
20-              optional = {
21-                max_tokens = 256,
22-                top_p = 0.9,
23-              },
24-            },
25-          },
26-          virtualtext = {
27-            auto_trigger_ft = {},
28-            keymap = {
29-              -- accept whole completion
30-              accept = '<A-A>',
31-              -- accept one line
32-              accept_line = '<A-a>',
33-              -- accept n lines (prompts for number)
34-              accept_n_lines = '<A-z>',
35-              -- Cycle to prev completion item, or manually invoke completion
36-              prev = '<A-[>',
37-              -- Cycle to next completion item, or manually invoke completion
38-              next = '<A-]>',
39-              dismiss = '<A-e>',
40-            },
41-          },
42-        }
43-      end,
44-    },
45     -- vim plugins
46     'rhysd/git-messenger.vim'
47   },