Skip to content

Commit

Permalink
fix(plugins): fix default configuration syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Mar 12, 2023
1 parent 2d62b10 commit 821aa73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ return {
-- {
-- "L3MON4D3/LuaSnip",
-- config = function(plugin, opts)
-- plugin.default_config(opts) -- include the default astronvim config that calls the setup call
-- require "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" })
Expand All @@ -36,7 +36,7 @@ return {
-- {
-- "windwp/nvim-autopairs",
-- config = function(plugin, opts)
-- plugin.default_config(opts) -- include the default astronvim config that calls the setup call
-- require "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"
Expand Down Expand Up @@ -66,7 +66,7 @@ return {
-- {
-- "folke/which-key.nvim",
-- config = function(plugin, opts)
-- plugin.default_config(opts)
-- require "plugins.configs.which-key"(plugin, opts) -- include the default astronvim config that calls the setup call
-- -- Add bindings which show up as group name
-- local wk = require "which-key"
-- wk.register({
Expand Down

0 comments on commit 821aa73

Please sign in to comment.