Merge branch 'master' of gitea.suda.codes:sudacode/nvim
This commit is contained in:
commit
324074bb1c
123
lua/plugins.lua
123
lua/plugins.lua
@ -95,8 +95,9 @@ require('packer').startup(function(use)
|
|||||||
"jackMort/ChatGPT.nvim",
|
"jackMort/ChatGPT.nvim",
|
||||||
commit = "24bcca7",
|
commit = "24bcca7",
|
||||||
config = function()
|
config = function()
|
||||||
require("chatgpt").setup({
|
require("chatgpt").setup(
|
||||||
api_key_cmd = "cat /home/stickuser/.config/openai/apikey",
|
{
|
||||||
|
api_key_cmd = "cat /home/sudacode/.openaikey",
|
||||||
yank_register = "+",
|
yank_register = "+",
|
||||||
edit_with_instructions = {
|
edit_with_instructions = {
|
||||||
diff = false,
|
diff = false,
|
||||||
@ -105,27 +106,35 @@ require('packer').startup(function(use)
|
|||||||
accept = "<C-y>",
|
accept = "<C-y>",
|
||||||
toggle_diff = "<C-d>",
|
toggle_diff = "<C-d>",
|
||||||
toggle_settings = "<C-o>",
|
toggle_settings = "<C-o>",
|
||||||
|
toggle_help = "<C-h>",
|
||||||
cycle_windows = "<Tab>",
|
cycle_windows = "<Tab>",
|
||||||
use_output_as_input = "<C-i>"
|
use_output_as_input = "<C-i>",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
chat = {
|
chat = {
|
||||||
welcome_message = "HELLO FREUD",
|
welcome_message = WELCOME_MESSAGE,
|
||||||
loading_text = "Loading, please wait ...",
|
loading_text = "Loading, please wait ...",
|
||||||
question_sign = "",
|
question_sign = "", -- 🙂
|
||||||
answer_sign = "ﮧ",
|
answer_sign = "ﮧ", -- 🤖
|
||||||
|
border_left_sign = "",
|
||||||
|
border_right_sign = "",
|
||||||
max_line_length = 120,
|
max_line_length = 120,
|
||||||
sessions_window = {
|
sessions_window = {
|
||||||
|
active_sign = " ",
|
||||||
|
inactive_sign = " ",
|
||||||
|
current_line_sign = "",
|
||||||
border = {
|
border = {
|
||||||
style = "rounded",
|
style = "rounded",
|
||||||
text = { top = " Sessions " }
|
text = {
|
||||||
|
top = " Sessions ",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
win_options = {
|
win_options = {
|
||||||
winhighlight = "Normal:Normal,FloatBorder:FloatBorder"
|
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
keymaps = {
|
keymaps = {
|
||||||
close = { "<C-c>" },
|
close = "<C-c>",
|
||||||
yank_last = "<C-y>",
|
yank_last = "<C-y>",
|
||||||
yank_last_code = "<C-k>",
|
yank_last_code = "<C-k>",
|
||||||
scroll_up = "<C-u>",
|
scroll_up = "<C-u>",
|
||||||
@ -133,67 +142,106 @@ require('packer').startup(function(use)
|
|||||||
new_session = "<C-n>",
|
new_session = "<C-n>",
|
||||||
cycle_windows = "<Tab>",
|
cycle_windows = "<Tab>",
|
||||||
cycle_modes = "<C-f>",
|
cycle_modes = "<C-f>",
|
||||||
|
next_message = "<C-j>",
|
||||||
|
prev_message = "<C-k>",
|
||||||
select_session = "<Space>",
|
select_session = "<Space>",
|
||||||
rename_session = "r",
|
rename_session = "r",
|
||||||
delete_session = "d",
|
delete_session = "d",
|
||||||
draft_message = "<C-d>",
|
draft_message = "<C-r>",
|
||||||
|
edit_message = "e",
|
||||||
|
delete_message = "d",
|
||||||
toggle_settings = "<C-o>",
|
toggle_settings = "<C-o>",
|
||||||
|
toggle_sessions = "<C-p>",
|
||||||
|
toggle_help = "<C-h>",
|
||||||
toggle_message_role = "<C-r>",
|
toggle_message_role = "<C-r>",
|
||||||
toggle_system_role_open = "<C-s>",
|
toggle_system_role_open = "<C-s>",
|
||||||
stop_generating = "<C-x>"
|
stop_generating = "<C-x>",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
popup_layout = {
|
popup_layout = {
|
||||||
default = "center",
|
default = "center",
|
||||||
center = { width = "80%", height = "80%" },
|
center = {
|
||||||
right = { width = "30%", width_settings_open = "50%" }
|
width = "80%",
|
||||||
|
height = "80%",
|
||||||
|
},
|
||||||
|
right = {
|
||||||
|
width = "30%",
|
||||||
|
width_settings_open = "50%",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
popup_window = {
|
popup_window = {
|
||||||
border = {
|
border = {
|
||||||
highlight = "FloatBorder",
|
highlight = "FloatBorder",
|
||||||
style = "rounded",
|
style = "rounded",
|
||||||
text = { top = " ChatGPT " }
|
text = {
|
||||||
|
top = " ChatGPT ",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
win_options = {
|
win_options = {
|
||||||
wrap = true,
|
wrap = true,
|
||||||
linebreak = true,
|
linebreak = true,
|
||||||
foldcolumn = "1",
|
foldcolumn = "1",
|
||||||
winhighlight = "Normal:Normal,FloatBorder:FloatBorder"
|
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
|
||||||
|
},
|
||||||
|
buf_options = {
|
||||||
|
filetype = "markdown",
|
||||||
},
|
},
|
||||||
buf_options = { filetype = "markdown" }
|
|
||||||
},
|
},
|
||||||
system_window = {
|
system_window = {
|
||||||
border = {
|
border = {
|
||||||
highlight = "FloatBorder",
|
highlight = "FloatBorder",
|
||||||
style = "rounded",
|
style = "rounded",
|
||||||
text = { top = " SYSTEM " }
|
text = {
|
||||||
|
top = " SYSTEM ",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
win_options = {
|
win_options = {
|
||||||
wrap = true,
|
wrap = true,
|
||||||
linebreak = true,
|
linebreak = true,
|
||||||
foldcolumn = "2",
|
foldcolumn = "2",
|
||||||
winhighlight = "Normal:Normal,FloatBorder:FloatBorder"
|
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
popup_input = {
|
popup_input = {
|
||||||
prompt = " ",
|
prompt = " ",
|
||||||
border = {
|
border = {
|
||||||
highlight = "FloatBorder",
|
highlight = "FloatBorder",
|
||||||
style = "rounded",
|
style = "rounded",
|
||||||
text = { top_align = "center", top = " Prompt " }
|
text = {
|
||||||
|
top_align = "center",
|
||||||
|
top = " Prompt ",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
win_options = {
|
win_options = {
|
||||||
winhighlight = "Normal:Normal,FloatBorder:FloatBorder"
|
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
|
||||||
},
|
},
|
||||||
submit = "<C-Enter>",
|
submit = "<C-Enter>",
|
||||||
submit_n = "<Enter>",
|
submit_n = "<Enter>",
|
||||||
max_visible_lines = 20
|
max_visible_lines = 20,
|
||||||
},
|
},
|
||||||
settings_window = {
|
settings_window = {
|
||||||
border = { style = "rounded", text = { top = " Settings " } },
|
setting_sign = " ",
|
||||||
|
border = {
|
||||||
|
style = "rounded",
|
||||||
|
text = {
|
||||||
|
top = " Settings ",
|
||||||
|
},
|
||||||
|
},
|
||||||
win_options = {
|
win_options = {
|
||||||
winhighlight = "Normal:Normal,FloatBorder:FloatBorder"
|
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
|
||||||
}
|
},
|
||||||
|
},
|
||||||
|
help_window = {
|
||||||
|
setting_sign = " ",
|
||||||
|
border = {
|
||||||
|
style = "rounded",
|
||||||
|
text = {
|
||||||
|
top = " Help ",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
win_options = {
|
||||||
|
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
openai_params = {
|
openai_params = {
|
||||||
model = "gpt-3.5-turbo",
|
model = "gpt-3.5-turbo",
|
||||||
@ -202,19 +250,26 @@ require('packer').startup(function(use)
|
|||||||
max_tokens = 300,
|
max_tokens = 300,
|
||||||
temperature = 0,
|
temperature = 0,
|
||||||
top_p = 1,
|
top_p = 1,
|
||||||
n = 1
|
n = 1,
|
||||||
},
|
},
|
||||||
openai_edit_params = {
|
openai_edit_params = {
|
||||||
model = "code-davinci-edit-001",
|
model = "gpt-3.5-turbo",
|
||||||
|
frequency_penalty = 0,
|
||||||
|
presence_penalty = 0,
|
||||||
temperature = 0,
|
temperature = 0,
|
||||||
top_p = 1,
|
top_p = 1,
|
||||||
n = 1
|
n = 1,
|
||||||
},
|
},
|
||||||
|
use_openai_functions_for_edits = false,
|
||||||
actions_paths = {},
|
actions_paths = {},
|
||||||
show_quickfixes_cmd = "Trouble quickfix",
|
show_quickfixes_cmd = "Trouble quickfix",
|
||||||
predefined_chat_gpt_prompts =
|
predefined_chat_gpt_prompts = "https://raw.githubusercontent.com/f/awesome-chatgpt-prompts/main/prompts.csv",
|
||||||
"https://raw.githubusercontent.com/f/awesome-chatgpt-prompts/main/prompts.csv"
|
highlights = {
|
||||||
})
|
help_key = "@symbol",
|
||||||
|
help_description = "@comment",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
end,
|
end,
|
||||||
requires = {
|
requires = {
|
||||||
"MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim",
|
"MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim",
|
||||||
|
Loading…
Reference in New Issue
Block a user