-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.lua
96 lines (96 loc) · 2.87 KB
/
config.lua
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
local Text = require("nui.text")
return {
{
"Kurama622/llm.nvim",
dependencies = { "nvim-lua/plenary.nvim", "MunifTanjim/nui.nvim" },
cmd = { "LLMSesionToggle", "LLMSelectedTextHandler", "LLMAppHandler" },
config = function()
require("llm").setup({
prefix = {
user = { text = " ", hl = "Title" },
assistant = { text = " ", hl = "Added" },
},
chat_ui_opts = {
relative = "editor",
position = "50%",
size = {
width = "80%",
height = "80%",
},
win_options = {
winblend = 0,
winhighlight = "Normal:String,FloatBorder:Float",
},
input = {
float = {
border = {
text = {
top = Text(" Enter Your Question ", "LlmYellowNormal"),
top_align = "center",
},
},
win_options = {
winblend = 0,
winhighlight = "Normal:String,FloatBorder:LlmYellowLight",
},
size = { height = "10%", width = "80%" },
order = 2,
},
-- for split style
split = {
relative = "editor",
position = {
row = "80%",
col = "50%",
},
border = {
text = {
top = Text(" Enter Your Question ", "LlmYellowNormal"),
top_align = "center",
},
},
win_options = {
winblend = 0,
winhighlight = "Normal:String,FloatBorder:LlmYellowLight",
},
size = { height = "10%", width = "80%" },
},
},
output = {
size = { height = "90%", width = "80%" },
order = 1,
win_options = {
winblend = 0,
winhighlight = "Normal:Normal,FloatBorder:Title",
},
},
history = {
size = { height = "100%", width = "20%" },
win_options = {
winblend = 0,
winhighlight = "Normal:LlmBlueNormal,FloatBorder:Title",
},
order = 3,
},
},
-- 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",
},
},
})
end,
keys = {
{ "<leader>ac", mode = "n", "<cmd>LLMSessionToggle<cr>" },
},
},
}