Gittyup/conf/editor.lua

29 lines
421 B
Lua
Raw Normal View History

2018-12-13 02:22:04 +03:00
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
},
view = {
showWhitespace = false
},
2018-12-13 02:22:04 +03:00
indent = {
tabs = true,
width = 4,
tabwidth = 4
},
blame = {
heatmap = true
}
}