summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-12-21 11:30:40 +0000
committerAnton Khirnov <anton@khirnov.net>2022-12-21 11:30:40 +0000
commit9e286faa4f0e8c215916424ce963bbf4fd0d1162 (patch)
treed3bba67ae275b16e9e8b1e5e06225c018c3523fc
parentc97d872e726b7826100b2f125ef3ea7cc76ce615 (diff)
rc: prettify module includes
-rw-r--r--rc.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/rc.lua b/rc.lua
index 807c0a2..47e6cb2 100644
--- a/rc.lua
+++ b/rc.lua
@@ -9,13 +9,16 @@ local beautiful = require("beautiful")
-- Notification library
local naughty = require("naughty")
+-- local modules
local bindings = require("bindings")
local commondefs = require("commondefs")
-local pager = require("pager")
-local urgent_wgt = require("urgent_wgt")
local utils = require("utils")
local workspace = require("workspace")
+-- local widgets
+local pager = require("pager")
+local urgent_wgt = require("urgent_wgt")
+
-- {{{ Error handling
-- Check if awesome encountered an error during startup and fell back to
-- another config (This code will only ever execute for the fallback config)