fix: Not loading nature module on some systems

Missing nature module, some functionality and builtins will be missing.
local error: open nature/init.lua: no such file or directory
global install error: error: /usr/share/hilbish/nature/commands/init.lua:2: could not find package 'nature.commands.cd'
~ cd Local
hilbish: cd not found
pull/150/head
Renzix 2022-05-08 12:19:06 -04:00
parent 0a01ed862c
commit fd31cca4e0
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
local _ = require 'succulent' -- Function additions
package.path = package.path .. ';' .. hilbish.dataDir .. '/?/init.lua'
.. ';' .. hilbish.dataDir .. '/?/?.lua'
.. ';' .. hilbish.dataDir .. '/?/?.lua' .. ";" .. hilbish.dataDir .. '/?.lua'
require 'nature.commands'
require 'nature.completions'