From 1a7f4cc8ad8053b67a6ece0949e163520c1c0338 Mon Sep 17 00:00:00 2001 From: manuuurino <2855338+manuuurino@users.noreply.github.com> Date: Thu, 4 Jan 2024 04:35:14 +0100 Subject: [PATCH] fix(core): fix require typo --- lua/plugins/core.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/plugins/core.lua b/lua/plugins/core.lua index 6e4e847..4bcd022 100644 --- a/lua/plugins/core.lua +++ b/lua/plugins/core.lua @@ -29,7 +29,7 @@ return { -- { -- "L3MON4D3/LuaSnip", -- config = function(plugin, opts) - -- require "plugins.configs.luasnip"(plugin, opts) -- include the default astronvim config that calls the setup call + -- require "astronvim.plugins.configs.luasnip"(plugin, opts) -- include the default astronvim config that calls the setup call -- -- add more custom luasnip configuration such as filetype extend or custom snippets -- local luasnip = require "luasnip" -- luasnip.filetype_extend("javascript", { "javascriptreact" }) @@ -38,7 +38,7 @@ return { -- { -- "windwp/nvim-autopairs", -- config = function(plugin, opts) - -- require "plugins.configs.nvim-autopairs"(plugin, opts) -- include the default astronvim config that calls the setup call + -- require "astronvim.plugins.configs.nvim-autopairs"(plugin, opts) -- include the default astronvim config that calls the setup call -- -- add more custom autopairs configuration such as custom rules -- local npairs = require "nvim-autopairs" -- local Rule = require "nvim-autopairs.rule"