10 lines
183 B
Lua
10 lines
183 B
Lua
local status_ok, luatab = pcall(require, "luatab")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
luatab.setup {
|
|
windowCount = function() return '' end,
|
|
devicon = function() return '' end,
|
|
}
|