Add auto close plugin as well as php parser
This commit is contained in:
parent
b9ee8f57e0
commit
a302871104
2
init.lua
2
init.lua
|
|
@ -262,7 +262,7 @@ vim.keymap.set('i', '<C-q>', 'copilot#Accept("<CR>")', { expr = true, silent = t
|
|||
-- See `:help nvim-treesitter`
|
||||
require('nvim-treesitter.configs').setup {
|
||||
-- Add languages to be installed here that you want installed for treesitter
|
||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vim' },
|
||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vim', 'php' },
|
||||
-- ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'help', 'vim' },
|
||||
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
|
||||
auto_install = false,
|
||||
|
|
|
|||
|
|
@ -5,5 +5,11 @@
|
|||
return {
|
||||
{
|
||||
"github/copilot.vim"
|
||||
},
|
||||
{
|
||||
"windwp/nvim-autopairs",
|
||||
config = function()
|
||||
require("nvim-autopairs").setup {}
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue