Skip to content

Instantly share code, notes, and snippets.

View MaxMusing's full-sized avatar
🌊
This ain't a wave

Max Musing MaxMusing

🌊
This ain't a wave
View GitHub Profile
@MaxMusing
MaxMusing / init.lua
Last active July 11, 2020 20:18
Hammerspoon config with support for simple window management.
-- Hot Config Reloading
function reloadConfig(files)
for _, file in pairs(files) do
if file:sub(-4) == ".lua" then
hs.reload()
break
end
end
end