Reputation: 76922
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.
how can I make this feather work?
Upvotes: 7
Views: 8712
Reputation: 685
Just uninstall Intellij IDE and reinstall again, it will ask you whether you need to install Jetbrains Runtime or not.
Upvotes: -1
Reputation: 3191
To switch the Java runtime used to run IntelliJ IDEA:
Ctrl+Shift+A
.Switch Boot JDK
action.More details Tuning IntelliJ IDEA
Upvotes: 2
Reputation: 2852
I encountered this problem on ubuntu and followed these instructions to resolve it. The JB SDK Bintray downloader allows you to manage JetBrains SDKs from within the IDE.
Upvotes: 1
Reputation: 314
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/
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.
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.
Upvotes: 14