Skip to content

Instantly share code, notes, and snippets.

View willothy's full-sized avatar

Will Hopkins willothy

View GitHub Profile
@willothy
willothy / layout.lua
Last active August 11, 2023 09:04
usage of nvim_tabpage_set_layout
local function row(...)
return { "row", { ... } }
end
local function col(...)
return { "col", { ... } }
end
---@param buf number|string?
local function win(buf)