1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03:00

prettify and use separators that work on any OS (including windows)

Philipp A 2016-08-10 14:28:53 +02:00
parent 767ea5dcf7
commit 369b92cccb

@ -1,10 +1,13 @@
There's no straightforward way to enable font ligatures in RStudio even if it's supposed to support them. Use the following workaround to enable font ligatures:
1. Close RStudio
2. Open [RStudio dir]\www\index.htm
2. Open <samp>[RStudio dir]/www/index.htm</samp>
3. Add following code between `<head>` and `</head>`:
`<style>*{text-rendering: optimizeLegibility;}</style>`
```html
<style>*{text-rendering: optimizeLegibility;}</style>
```
4. Restart Rstudio
Source: [How to enable font ligatures in Rstudio?](https://stackoverflow.com/questions/34548194/rstudio-how-to-enable-font-ligatures-in-rstudio/34714296#34714296)