feat: configuarble with lua supports custom aliases

This commit is contained in:
♥ Minnie ♥ 2025-06-09 10:32:29 +08:00
parent cc104f3f42
commit cb8bbbf414
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
5 changed files with 330 additions and 4 deletions

8
rush.lua Normal file
View file

@ -0,0 +1,8 @@
-- This table will hold the configuration.
local config = {}
config.aliases = {
ls = "ls --color=auto",
}
return config