-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uses a lua file to modify an existing default configuration. Working on #25.
- Loading branch information
Showing
3 changed files
with
47 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
-- default configuration for zwm | ||
-- serves as an api documentation for now | ||
|
||
c = {} | ||
|
||
-- General | ||
c.autoReload = true -- automatically reloads the configuration file | ||
|
||
-- Window management | ||
c.wm = {} | ||
|
||
-- Key bindings | ||
-- mod key | ||
c.mods = {} | ||
c.mods[1] = 'alt' | ||
|
||
zwm.config = c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters