plugin updates

This commit is contained in:
kossLAN 2024-08-28 00:03:42 -04:00
parent fd4cc7c8e6
commit 2019cab65d
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
8 changed files with 113 additions and 59 deletions

15
nvim/plugin/copilot.lua Normal file
View file

@ -0,0 +1,15 @@
-- Copilot related plugins setup
require('CopilotChat').setup {
debug = true,
}
require('copilot_cmp').setup()
require('copilot').setup {
suggestion = { enabled = false },
panel = { enabled = false },
filetypes = {
['*'] = false,
},
copilot_node_command = 'node',
}