master
blob42 7 months ago
parent 85155e5a3b
commit 02bb9b6658

@ -9,7 +9,7 @@ local M = {}
M.setup = function()
vim.g["codegpt_commands"] = {
["q4"] = {
callback_type = "text_popup",
callback_type = "code_popup",
system_message_template = "You are a {{filetype}} software pair assistant AI. Answer my questions. Think step by step out loud.",
user_message_template = "I have a question about the following {{language}} code: ```{{filetype}} {{text_selection}}``` {{command_args}}"

@ -35,8 +35,8 @@ local opts = {
},
{
elements = {
{ id = "repl", size = 0.7 },
{ id = "watches", size = 0.5 },
{ id = "repl", size = 0.4 },
{ id = "watches", size = 0.6 },
-- "console",
},
size = 10, -- 25% of total lines

@ -21,6 +21,7 @@ local config = {
"nvim-dap",
"nvchad_ui",
"base46",
"go.nvim",
"colorbuddy.nvim",
"navigator.lua"
},

@ -7,10 +7,10 @@ local function dwm()
group = group,
pattern = '*/suckless/*/{*.c,*.h}',
callback = function()
local make_cmd = 'make && doas make install'
if vim.env.STREAMING ~= nil then
make_cmd = 'make && make install'
end
local make_cmd = 'make && make install'
-- if vim.env.STREAMING ~= nil then
-- make_cmd = 'make && make install'
-- end
vim.cmd("AsyncRun " .. make_cmd)
end

Loading…
Cancel
Save