mirror of
https://github.com/sajenim/rush.git
synced 2025-06-28 01:44:21 +08:00
8 lines
128 B
Lua
8 lines
128 B
Lua
-- This table will hold the configuration.
|
|
local config = {}
|
|
|
|
config.shellAliases = {
|
|
ls = "ls --color=auto",
|
|
}
|
|
|
|
return config
|