Skip to content

Commit 394af4f

Browse files
copilot and theme
1 parent 1c719fc commit 394af4f

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,6 +911,6 @@ require('lazy').setup({
911911
},
912912
})
913913

914-
vim.cmd.colorscheme 'github_light'
914+
vim.cmd.colorscheme 'catppuccin-latte'
915915
-- The line beneath this is called `modeline`. See `:help modeline`
916916
-- vim: ts=2 sts=2 sw=2 et

lua/custom/plugins/init.lua

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,17 @@ return {
308308
require('copilot').setup {
309309
suggestion = {
310310
enabled = true,
311+
auto_trigger = true,
312+
hide_during_completion = false,
313+
debounce = 75,
314+
keymap = {
315+
accept = '<M-;>',
316+
accept_word = false,
317+
accept_line = false,
318+
next = '<M-]>',
319+
prev = '<M-[>',
320+
dismiss = '<C-]>',
321+
},
311322
},
312323
panel = {
313324
enabled = false,

0 commit comments

Comments
 (0)