customizations

This commit is contained in:
Todd Morse 2023-10-06 14:01:21 -04:00
parent f15af9b8be
commit 910044d3f2
No known key found for this signature in database
GPG key ID: 2BB00AF5ED927B55
4 changed files with 93 additions and 18 deletions

View file

@ -2,4 +2,41 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
{
'ayu-theme/ayu-vim',
priority = 999,
config = function()
vim.cmd.colorscheme 'ayu'
end,
},
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",
build = ":Copilot auth",
opts = {
suggestion = { enabled = false },
panel = { enabled = false },
filetypes = {
markdown = true,
help = true,
},
},
},
{
'hrsh7th/nvim-cmp',
dependencies = {
{
"zbirenbaum/copilot-cmp",
dependencies = "copilot.lua",
opts = {},
config = function(_, opts)
local copilot_cmp = require("copilot_cmp")
copilot_cmp.setup(opts)
end,
},
},
},
}