GoLogo is a plugin for the JetBrains IDE GoLand. This plugin replaces the beloved GoLang gopher icon in the file explorer and editor tabs (which is the default with the JetBrains Go plugin) with the official GoLang logo icon.
git clone https://github.com/Julian-Bruyers/gologo2. Make sure you have Gradle and at least Java JDK v17 installed
Windows
choco install openjdk --version=17.0.2
choco install gradlemacOS
brew install openjdk@17
brew install gradleLinux
sudo apt update
sudo apt install openjdk-17-jdksudo apt install unzip wget -y
wget https://services.gradle.org/distributions/gradle-8.13-bin.zip -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-8.13-bin.zip
echo 'export PATH=$PATH:/opt/gradle/gradle-8.13/bin' >> ~/.bashrc
source ~/.bashrcmacOS
cd gologo
sudo chmod +x gradlew
./gradlew build
./gradlew buildPluginSometimes it might be required to run:
gradle wrapper --gradle-version 8.7Windows
cd gologo
.\gradlew.bat build
.\gradlew.bat buildPluginLinux
cd gologo
sudo chmod +x gradlew
./gradlew build
./gradlew buildPluginThe GoLogo plugin is licensed under the MIT License.
The icons used in this plugin are derived from resources on the official go.dev website. Please refer to the Go Brand Guidelines and Go Terms of Service for information regarding the use of Go's brand assets.
Compatibility with JetBrains Marketplace: This plugin is intended for distribution via the JetBrains Marketplace. While this plugin utilizes its own MIT License, users and developers should also be aware of the terms and conditions set forth by JetBrains for plugins hosted on their marketplace. It is recommended to review the JetBrains Marketplace Agreement for further details.
GoLogo is not affiliated with the Go brand, Google, or the Go language development team.

