Customized fork of github.com/rxi/lite
1-- put user settings here 2-- this module will be loaded after everything else when the application starts 3 4local keymap = require "core.keymap" 5local config = require "core.config" 6local style = require "core.style" 7 8config.tab_type = "hard" 9config.indent_size = 8 10 11-- light theme: 12-- require "user.colors.summer" 13 14-- key binding: 15-- keymap.add { ["ctrl+escape"] = "core:quit" } 16