From 4bd398e81bf6e03c936603cd80ae32751305360c Mon Sep 17 00:00:00 2001 From: Nikita Prokopov Date: Sun, 20 Dec 2015 19:32:19 +0500 Subject: [PATCH] Created Atom instructions (markdown) --- Atom-instructions.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Atom-instructions.md diff --git a/Atom-instructions.md b/Atom-instructions.md new file mode 100644 index 0000000..3fa2ad2 --- /dev/null +++ b/Atom-instructions.md @@ -0,0 +1,11 @@ +To enable ligatures, Menu → Open your stylesheet and add `text-rendering` to `atom-text-editor`: + +``` +atom-text-editor { + text-rendering: optimizeLegibility; +} +``` + +You’ll need Atom 1.1 or newer. + +Beware that in some syntaxes **selected ligatures might not work**. This is usually a syntax parser/tokenization issue (e.g. `->` breaks into two symbols by JS/Ruby syntax highlighter). See issues [#63](https://github.com/tonsky/FiraCode/issues/63) and [#69](https://github.com/tonsky/FiraCode/issues/63) \ No newline at end of file