lualine config edits

This commit is contained in:
Daniel B Sherry 2025-05-22 14:10:59 -05:00
parent 9331121a9f
commit 5c937dc1c8
19 changed files with 301 additions and 83 deletions

2
learn/learning.lua Normal file
View file

@ -0,0 +1,2 @@
local names = { "Norsh", "Dan", "Bisc", "Ella"}
return names

5
learn/main.lua Normal file
View file

@ -0,0 +1,5 @@
local fam = require('learn.learning')
print(fam[1])
-- for i, v in ipairs(fam) do
-- print(i, v)
-- end