runner.nvim/lua/runner/config.lua
Kurenshe Nurdaulet f4f42e02ec Fix single quotes
2023-04-03 21:38:35 +06:00

18 lines
382 B
Lua

local M = {}
local defaults = {
position = 'right', -- options: top, left, right, bottom
width = 80, -- width of window when position is left or right
height = 10, -- height of window when position is top or bottom
}
M.options = {}
M.setup = function(options)
M.options = vim.tbl_deep_extend('force', {}, defaults, options or {})
end
M.setup()
return M;