initial setup

This commit is contained in:
2026-07-23 14:53:57 +10:00
parent 9461e7cc7f
commit 074791f430
5 changed files with 354 additions and 0 deletions

15
src/main.py Normal file
View File

@@ -0,0 +1,15 @@
from textual.app import App, ComposeResult
from textual.widgets import Footer
from widgets.text_editor import TextEditor
class Berry(App):
def compose(self) -> ComposeResult:
yield TextEditor(language="python")
yield Footer()
if __name__ == "__main__":
app = Berry()
app.run()