Swap defaults to lua

This commit is contained in:
Ryan Hughes
2026-05-11 10:39:22 -04:00
parent b93650991f
commit c7b6a7f8c4
72 changed files with 642 additions and 744 deletions
-2
View File
@@ -1,2 +0,0 @@
# This directory is intended for permanent config toggle flags.
# Do not remove this file (as the directory always needs at least one file).
+2
View File
@@ -0,0 +1,2 @@
-- This directory is intended for permanent config toggle flags.
-- Do not remove this file; the directory always needs at least one file.
@@ -1,5 +0,0 @@
# Avoid overly wide single-window layouts on wide screens
layout {
single_window_aspect_ratio = 1 1
}
@@ -0,0 +1,6 @@
-- Avoid overly wide single-window layouts on wide screens.
hl.config({
layout = {
single_window_aspect_ratio = { 1, 1 },
},
})
-10
View File
@@ -1,10 +0,0 @@
# Remove all window gaps and borders
general {
gaps_out = 0
gaps_in = 0
border_size = 0
}
decoration {
rounding = 0
}
+12
View File
@@ -0,0 +1,12 @@
-- Remove all window gaps and borders.
hl.config({
general = {
gaps_out = 0,
gaps_in = 0,
border_size = 0,
},
decoration = {
rounding = 0,
},
})