remove unused plugins and run stylelua

This commit is contained in:
Salar Rahmanian 2024-05-18 22:04:13 -07:00
parent 12c5e919e8
commit e321003bb8
5 changed files with 7 additions and 29 deletions

View file

@ -1,9 +1,9 @@
return {
"github/copilot.vim",
lazy = false,
config = function ()
vim.api.nvim_set_keymap('i', '<C-Tab>', 'copilot#Accept("<End>")', { silent = true, script = true, expr = true })
vim.g.copilot_no_tab_map = true;
vim.g.copilot_assume_mapped = true;
end
config = function()
vim.api.nvim_set_keymap("i", "<C-Tab>", 'copilot#Accept("<End>")', { silent = true, script = true, expr = true })
vim.g.copilot_no_tab_map = true
vim.g.copilot_assume_mapped = true
end,
}