1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 00:49:26 +00:00

[neovim] Refactor

This commit is contained in:
2025-02-21 16:24:32 +01:00
parent b8fcf02379
commit 8d7675acf4
8 changed files with 67 additions and 38 deletions

View File

@ -28,10 +28,18 @@ local prompts = {
require("CopilotChat").setup({
highlight_headers = false,
separator = "———",
-- separator = "———",
error_header = "> [!ERROR] Error",
debug = false,
show_user_selection = false,
clear_chat_on_new_prompt = false,
prompts = prompts,
})
vim.api.nvim_create_autocmd("BufEnter", {
pattern = "copilot-chat",
callback = function()
vim.opt_local.relativenumber = false
vim.opt_local.number = false
end,
})