copilot and theme

This commit is contained in:
Felipe Magrassi 2024-08-06 00:58:44 -03:00
parent 1c719fc85f
commit 394af4f4b8
2 changed files with 12 additions and 1 deletions

View File

@ -911,6 +911,6 @@ require('lazy').setup({
},
})
vim.cmd.colorscheme 'github_light'
vim.cmd.colorscheme 'catppuccin-latte'
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et

View File

@ -308,6 +308,17 @@ return {
require('copilot').setup {
suggestion = {
enabled = true,
auto_trigger = true,
hide_during_completion = false,
debounce = 75,
keymap = {
accept = '<M-;>',
accept_word = false,
accept_line = false,
next = '<M-]>',
prev = '<M-[>',
dismiss = '<C-]>',
},
},
panel = {
enabled = false,