```lua content = { "This is:", "Startup.nvim", "by max397574" } ```
```lua content = function() local clock = " " .. os.date "%H:%M" local date = " " .. os.date "%d-%m-%y" return {clock,date} end ``` With a separate function: ```lua local function time() local clock = " " .. os.date "%H:%M" local date = " " .. os.date "%d-%m-%y" return {clock,date} end setting = { ... content = time() ... } ```
```lua
content = {
[" Find File"] = { "Telescope find_files", "