mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-03 00:49:26 +00:00
[neovim] Add copilot
This commit is contained in:
17
.config/nvim/lua/plugins/copilot.lua
Normal file
17
.config/nvim/lua/plugins/copilot.lua
Normal file
@ -0,0 +1,17 @@
|
||||
require("copilot").setup({
|
||||
suggestion = { enabled = false },
|
||||
panel = { enabled = false },
|
||||
filetypes = {
|
||||
javascript = true,
|
||||
typescript = true,
|
||||
go = true,
|
||||
lua = true,
|
||||
python = true,
|
||||
sh = true,
|
||||
yaml = true,
|
||||
json = true,
|
||||
["*"] = false,
|
||||
},
|
||||
})
|
||||
|
||||
require("copilot_cmp").setup()
|
Reference in New Issue
Block a user