Gittyup/conf/editor.lua
2018-12-12 16:22:04 -07:00

26 lines
378 B
Lua

local family = "Courier New"
local size = 10
if platform == "mac" then
family = "Menlo"
size = 12
elseif platform == "win" then
family = "Consolas"
elseif platform == "x11" then
family = "Monospace"
end
return {
font = {
family = family,
size = size
},
indent = {
tabs = true,
width = 4,
tabwidth = 4
},
blame = {
heatmap = true
}
}