Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to run IntelliJ IDEA with JetBrains Runtime

I'm trying to activate Ligatures a new feather in IntelliJ IDEA 2016.2 by following the instructions in this video but there are missing fonts and when using 64 version I get this hint.

The JRE you are running IntelliJ IDEA with might have functional and performance issues related to ligatures support. To avoid such issues, run IntelliJ IDEA with JetBrains Runtime.

this is the fonts list enter image description here

how can I make this feather work?

enter image description here

like image 659
humazed Avatar asked Jul 19 '16 08:07

humazed


People also ask

How do I get runtime in IntelliJ?

From the main menu, select Help | Find Action or press Ctrl+Shift+A . Find and select the Choose Boot Java Runtime for the IDE action. Select the desired runtime and click OK. If necessary, you can change the location where IntelliJ IDEA will download the selected runtime.

What is JetBrains runtime?

JetBrains Runtime is a fork of OpenJDK available for Windows, Mac OS X, and Linux. It includes a number of enhancements in font rendering, HiDPI support, windowing/focus subsystems, performance improvements and bugfixes.

Does IntelliJ use JDK or JRE?

Java Development Kit (JDK) To develop applications in IntelliJ IDEA, you need a Java SDK (JDK). A JDK is a software package that contains libraries, tools for developing and testing Java applications (development tools), and tools for running applications on the Java platform (Java Runtime Environment — JRE).


2 Answers

Maybe a bit late to answer this. Recently ran into same issue, googling around came across this post. After while did figure out how to do it properly.

There is no installer but there is tar/gzip file for windows under files tab in bintray.com/jetbrains/intellij-jdk/

  • for windows 64 bit https://bintray.com/jetbrains/intellij-jdk/openjdk8-windows-x64#files [ set me up button in the page is very misleading though..]

Once you download and extracted the JetBrains Runtime, add environment IDEA_JDK variable with path of runtime environment. Close the ide and start again, and you are good to go.

  • for 64bit environment variable will be like IDEA_JDK_64=c:/intellji-jdk/

hint: IDEA_JDK for 32 bit idea.exe and IDEA_JDK_64 for 64 bit idea64.exe

As for the fira code font , they are in github https://github.com/tonsky/FiraCode. Pull the latest to your PC via git or simply download the repo.

  • For windows install the ttf fonts in distr folder [ all the fonts are under distr folder ].
like image 192
Ice Avatar answered Oct 13 '22 14:10

Ice


To switch the Java runtime used to run IntelliJ IDEA:

  • On the Help menu, click Find Action, or press Ctrl+Shift+A.
  • Find and select the Switch Boot JDK action.
  • Select the desired JDK and click OK.

More details Tuning IntelliJ IDEA

like image 23
Sergey Ponomarev Avatar answered Oct 13 '22 16:10

Sergey Ponomarev