Files
zyedidia.micro/runtime/plugins/ftoptions/ftoptions.lua
2017-10-17 00:03:57 -04:00

24 lines
522 B
Lua

if GetOption("ftoptions") == nil then
AddOption("ftoptions", true)
end
function onViewOpen(view)
if not GetOption("ftoptions") then
return
end
local ft = view.Buf.Settings["filetype"]
if ft == "go" or
ft == "makefile" then
SetOption("tabstospaces", "off")
elseif ft == "fish" or
ft == "python" or
ft == "python2" or
ft == "python3" or
ft == "yaml" or
ft == "nim" then
SetOption("tabstospaces", "on")
end
end