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

View file

@ -1,4 +1,15 @@
items = [1, 2, 3]
print([x**2 for x in items])
print(items*2)
print([x**3 for x in items])
for i in items:
print(i)
def myfunc():
print("this is my func")
def myfunc2():
pass
myfunc()