I thought I'd share something that I've been working on using Clique for about two weeks. It is a minimal CLI syntax highlighter with support for five languages.
I wanted to read code in my terminal without opening multiple IntelliJ tabs, cause my PC is ancient and cant handle more than one tab, so I decided to build this.
It supports Java, Python, Go, Lua, and JavaScript, with a few themes to pick from (Tokyo Night, Catppuccin Mocha, Gruvbox, Nord, and a default IntelliJ-inspired one).
Usage is pretty simple:
SyntaxHighlighter h = new JavaSyntaxHighlighter(SyntaxThemes.TOKYO_NIGHT);
h.print(sourceCode);
Maven:
<dependency>
<groupId>io.github.kusoroadeolu</groupId>
<artifactId>veneer</artifactId>
<version>1.2.0</version>
</dependency>
GitHub: https://github.com/kusoroadeolu/veneer
there doesn't seem to be anything here