Files
dotfiles/dot_config/herdr/plugins/github/herdr-splits-d880c4924f2b/plugin/herdr-splits.lua
2026-07-29 08:36:58 +02:00

12 lines
376 B
Lua

-- herdr-splits.nvim plugin bootstrap.
-- This file is loaded by Neovim when the plugin is found on the runtimepath.
-- It defers all work to `require('herdr-splits')`.
if vim.g.loaded_herdr_splits then
return
end
vim.g.loaded_herdr_splits = true
-- Defer loading until user calls setup() or invokes a function.
-- The main module is available as require('herdr-splits').