mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-19 16:32:58 +01:00
7 lines
293 B
Lua
7 lines
293 B
Lua
-- This module is responsible for loading the native mzte_nv lua module
|
|
package.cpath = package.cpath .. ";" .. vim.loop.os_homedir() .. "/.local/share/nvim/mzte_nv.so"
|
|
|
|
local success = pcall(require, "mzte_nv");
|
|
if not success then
|
|
error "Failed to preload mzte_nv. Is it installed?"
|
|
end
|