Compare commits
No commits in common. '643c896f2d1c8df7dfb667adac631d5f2795d959' and '966f4fdc0b7bb331f30bdd90c796711c187d0f26' have entirely different histories.
643c896f2d
...
966f4fdc0b
@ -1,11 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"github/copilot.vim",
|
|
||||||
config = function()
|
|
||||||
vim.g.copilot_no_tab_map = true
|
|
||||||
vim.g.copilot_assume_mapped = true
|
|
||||||
|
|
||||||
vim.keymap.set("i", "<C-j>", "copilot#Accept('<CR>')", {noremap = true, silent = true, expr=true, replace_keycodes = false })
|
|
||||||
end
|
|
||||||
},
|
|
||||||
}
|
|
@ -1,12 +1,10 @@
|
|||||||
return {
|
return {
|
||||||
{
|
'nvim-treesitter/nvim-treesitter',
|
||||||
'nvim-treesitter/nvim-treesitter',
|
config = function()
|
||||||
config = function()
|
local configs = require("nvim-treesitter.configs")
|
||||||
local configs = require("nvim-treesitter.configs")
|
configs.setup({
|
||||||
configs.setup({
|
highlight = { enable = true },
|
||||||
highlight = { enable = true },
|
indent = { enable = true },
|
||||||
indent = { enable = true },
|
})
|
||||||
})
|
end,
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue