-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsplit-ui-cfg.lua
More file actions
98 lines (97 loc) · 2.71 KB
/
Copy pathsplit-ui-cfg.lua
File metadata and controls
98 lines (97 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
return {
{
"Kurama622/llm.nvim",
dependencies = { "nvim-lua/plenary.nvim", "MunifTanjim/nui.nvim" },
cmd = { "LLMSessionToggle", "LLMSelectedTextHandler", "LLMAppHandler" },
config = function()
require("llm").setup({
prefix = {
user = { text = " ", hl = "Title" },
assistant = { text = " ", hl = "Added" },
},
style = "right", -- right | left | top | bottom
chat_ui_opts = {
input = {
split = {
relative = "win",
position = {
row = "80%",
col = "50%",
},
border = {
text = {
top = " Enter Your Question ",
top_align = "center",
},
},
win_options = {
winblend = 0,
winhighlight = "Normal:String,FloatBorder:LlmYellowLight,FloatTitle:LlmYellowNormal",
},
size = { height = 2, width = "80%" },
},
},
output = {
split = {
size = "40%",
},
},
history = {
split = {
-- Default: true.
-- If the window flickers when the cursor moves on macOS, you can set enable_fzf_focus_print = false.
enable_fzf_focus_print = true,
size = "60%",
},
},
models = {
split = {
relative = "win",
size = { height = "30%", width = "60%" },
},
},
},
-- popup window options
popwin_opts = {
relative = "cursor",
enter = true,
focusable = true,
zindex = 50,
position = { row = -7, col = 15 },
size = { height = 15, width = "50%" },
border = { style = "single", text = { top = " Explain ", top_align = "center" } },
win_options = {
winblend = 0,
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
},
-- move popwin
move = {
left = {
mode = "n",
keys = "<left>",
distance = 5,
},
right = {
mode = "n",
keys = "<right>",
distance = 5,
},
up = {
mode = "n",
keys = "<up>",
distance = 2,
},
down = {
mode = "n",
keys = "<down>",
distance = 2,
},
},
},
})
end,
keys = {
{ "<leader>ac", mode = "n", "<cmd>LLMSessionToggle<cr>" },
},
},
}