Text Editor Widget for egui with numbered lines and simple syntax highlighting based on keywords sets.
```rust use eguicodeeditor::{CodeEditor, ColorTheme, Syntax};
CodeEditor::default() .idsource("code editor") .withrows(12) .withfontsize(14.0) .withtheme(ColorTheme::GRUVBOX) .withsyntax(Syntax::rust()) .withnumlines(true) .show(ui, &mut self.code); }); } ```
Based on themes in Helix Editor.
Font used in examples is Comic Code by Toshi Omagari.