|
|
|
@ -651,7 +651,7 @@ require('lazy').setup({
|
|
|
|
|
--
|
|
|
|
|
-- You can use a sub-list to tell conform to run *until* a formatter
|
|
|
|
|
-- is found.
|
|
|
|
|
-- javascript = { { "prettierd", "prettier" } },
|
|
|
|
|
javascript = { { 'prettierd', 'prettier' } },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
@ -869,6 +869,59 @@ require('lazy').setup({
|
|
|
|
|
event = { 'VeryLazy' },
|
|
|
|
|
config = true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'adalessa/laravel.nvim',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'zbirenbaum/copilot.lua',
|
|
|
|
|
cmd = 'Copilot',
|
|
|
|
|
event = 'InsertEnter',
|
|
|
|
|
config = function()
|
|
|
|
|
require('copilot').setup {
|
|
|
|
|
panel = {
|
|
|
|
|
enabled = true,
|
|
|
|
|
auto_refresh = false,
|
|
|
|
|
keymap = {
|
|
|
|
|
jump_prev = '[[',
|
|
|
|
|
jump_next = ']]',
|
|
|
|
|
accept = '<CR>',
|
|
|
|
|
refresh = 'gr',
|
|
|
|
|
open = '<M-CR>',
|
|
|
|
|
},
|
|
|
|
|
layout = {
|
|
|
|
|
position = 'bottom', -- | top | left | right
|
|
|
|
|
ratio = 0.4,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
suggestion = {
|
|
|
|
|
enabled = true,
|
|
|
|
|
auto_trigger = true,
|
|
|
|
|
debounce = 75,
|
|
|
|
|
keymap = {
|
|
|
|
|
accept = '<M-l>',
|
|
|
|
|
accept_word = false,
|
|
|
|
|
accept_line = false,
|
|
|
|
|
next = '<M-]>',
|
|
|
|
|
prev = '<M-[>',
|
|
|
|
|
dismiss = '<C-]>',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
filetypes = {
|
|
|
|
|
yaml = false,
|
|
|
|
|
markdown = false,
|
|
|
|
|
help = false,
|
|
|
|
|
gitcommit = false,
|
|
|
|
|
gitrebase = false,
|
|
|
|
|
hgcommit = false,
|
|
|
|
|
svn = false,
|
|
|
|
|
cvs = false,
|
|
|
|
|
['.'] = false,
|
|
|
|
|
},
|
|
|
|
|
copilot_node_command = 'node', -- Node.js version must be > 18.x
|
|
|
|
|
server_opts_overrides = {},
|
|
|
|
|
}
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
-- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
|
|
|
|
|
-- init.lua. If you want these files, they are in the repository, so you can just download them and
|
|
|
|
@ -883,7 +936,7 @@ require('lazy').setup({
|
|
|
|
|
-- require 'kickstart.plugins.indent_line',
|
|
|
|
|
-- require 'kickstart.plugins.lint',
|
|
|
|
|
-- require 'kickstart.plugins.autopairs',
|
|
|
|
|
-- require 'kickstart.plugins.neo-tree',
|
|
|
|
|
require 'kickstart.plugins.neo-tree',
|
|
|
|
|
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
|
|
|
|
|
|
|
|
|
|
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
|
|
|
|
|