init.lua 331 B

1234567891011121314
  1. -- put user settings here
  2. -- this module will be loaded after everything else when the application starts
  3. local keymap = require "core.keymap"
  4. local config = require "core.config"
  5. local style = require "core.style"
  6. -- light theme:
  7. -- require "user.colors.summer"
  8. -- key binding:
  9. -- keymap.add { ["ctrl+escape"] = "core:quit" }