Skip to content

Commit

Permalink
refactor: changes the path to builtin presets
Browse files Browse the repository at this point in the history
  • Loading branch information
rasulomaroff committed Sep 28, 2023
1 parent 8f7932d commit 7ad7615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/reactive.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function M.setup(config)
local State = require 'reactive.state'

for name, preset_val in pairs(config.builtin or {}) do
local ok, preset = pcall(require, 'reactive.presets.' .. name)
local ok, preset = pcall(require, 'reactive.builtin.' .. name)

if not ok then
vim.notify(
Expand Down

0 comments on commit 7ad7615

Please sign in to comment.