Add auto close plugin as well as php parser

This commit is contained in:
Titus Moore 2023-04-04 16:11:06 -04:00
parent b9ee8f57e0
commit a302871104
2 changed files with 7 additions and 1 deletions

View File

@ -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,

View File

@ -5,5 +5,11 @@
return {
{
"github/copilot.vim"
},
{
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup {}
end,
}
}