Last active
January 11, 2024 06:45
-
-
Save renatorib/a0d7af29133c8a775b0740d0b67e32a8 to your computer and use it in GitHub Desktop.
Revisions
-
renatorib revised this gist
Feb 13, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # Using Operator Mono with Fira Code ligatures in Atom. 1. **Open your Atom's Stylesheet**  2. **Put this css** ```css -
renatorib revised this gist
Feb 13, 2017 . 1 changed file with 7 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,15 +32,15 @@ atom-text-editor::shadow { For Atom version >= 1.13.x ```css atom-text-editor.editor { .syntax--storage.syntax--type.syntax--function.syntax--arrow, .syntax--keyword.syntax--operator:not(.accessor), .syntax--punctuation.syntax--definition { font-family: "Fira Code"; } .syntax--string.syntax--quoted, .syntax--string.syntax--regexp { -webkit-font-feature-settings: "liga" off, "calt" off; } } -
renatorib revised this gist
Jan 30, 2017 . 1 changed file with 2 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,16 +5,11 @@ 2. **Put this css** ```css atom-text-editor { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; font-family: "Operator Mono"; font-weight: 500; line-height: 1.7; } ``` -
renatorib revised this gist
Jan 30, 2017 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -51,8 +51,7 @@ atom-text-editor { } ``` Save file and it's done. --- -
renatorib revised this gist
Jan 30, 2017 . 1 changed file with 6 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,8 +17,10 @@ atom-text-editor { font-weight: 400; line-height: 1.7; } ``` For Atom version < 1.13.x ```css atom-text-editor::shadow { .storage.type.function.arrow, .keyword.operator:not(.accessor), @@ -31,8 +33,10 @@ atom-text-editor::shadow { -webkit-font-feature-settings: "liga" off, "calt" off; } } ``` For Atom version >= 1.13.x ```css atom-text-editor { .storage.type.function.arrow, .keyword.operator:not(.accessor), -
renatorib revised this gist
Jan 30, 2017 . 1 changed file with 20 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,20 +5,35 @@ 2. **Put this css** ```css atom-pane atom-text-editor { margin-top: 10px; margin-bottom: 10px; padding: 0; } atom-text-editor { text-rendering: optimizeLegibility; font-family: "Operator Mono"; font-weight: 400; line-height: 1.7; } /* Atom < 1.13.x */ atom-text-editor::shadow { .storage.type.function.arrow, .keyword.operator:not(.accessor), .punctuation.definition.entity.css { font-family: 'Fira Code'; } .string.quoted, .string.regexp { -webkit-font-feature-settings: "liga" off, "calt" off; } } /* Atom >= 1.13.x */ atom-text-editor { .storage.type.function.arrow, .keyword.operator:not(.accessor), .punctuation.definition.entity.css { -
renatorib revised this gist
Jan 30, 2017 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -20,9 +20,9 @@ atom-pane atom-text-editor { atom-text-editor::shadow { .storage.type.function.arrow, .keyword.operator:not(.accessor), .punctuation.definition.entity.css { font-family: 'Fira Code'; } .string.quoted, -
renatorib revised this gist
Jan 11, 2017 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ # Using Operator Mono with Fira Code ligatures in Atom. 1. **Open your Atom's Stylesheet**  2. **Put this css** ```css atom-text-editor { text-rendering: optimizeLegibility; @@ -32,11 +32,12 @@ atom-text-editor::shadow { } ``` 3. **Save**. It's done. --- Works fine with Javascript:  -
renatorib revised this gist
Jan 11, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # Using Operator Mono with Fira Code ligatures in Atom. 1. Open your Atom's Stylesheet  -
renatorib revised this gist
Jan 11, 2017 . 1 changed file with 7 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,5 @@ # Using Operator with Fira Code ligatures in Atom. 1. Open your Atom's Stylesheet  @@ -36,4 +33,10 @@ atom-text-editor::shadow { ``` 3. Save. It's done. --- Works fine with Javascript:  -
renatorib revised this gist
Jan 11, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # Using Operator with Fira Code ligatures in Atom. Works fine with Javascript:  -
renatorib revised this gist
Jan 11, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # Using `Operator` with `Fira Code` ligatures in Atom. Works fine with Javascript:  -
renatorib revised this gist
Jan 11, 2017 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,9 @@ ### Using `Operator` with `Fira Code` ligatures in Atom. Works fine with Javascript:  1. Open your Atom's Stylesheet  2. Put this css -
renatorib revised this gist
Jan 11, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ### Using `Operator` with `Fira Code` ligatures in Atom. Works fine with Javascript: -
renatorib renamed this gist
Jan 11, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
renatorib revised this gist
Jan 11, 2017 . 2 changed files with 38 additions and 26 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,40 @@ ### Using `Operator` with `Fira Code` ligatures in atom. Works fine with Javascript:  1. Open your Atom's Stylesheet  2. Put this css ```css atom-text-editor { text-rendering: optimizeLegibility; font-family: "Operator Mono"; font-weight: 400; line-height: 1.7; } atom-pane atom-text-editor { margin-top: 10px; margin-bottom: 10px; padding: 0; } atom-text-editor::shadow { .storage.type.function.arrow, .keyword.operator, .meta.brace { font-family: "Fira Code"; } .string.quoted, .string.regexp { -webkit-font-feature-settings: "liga" off, "calt" off; } } ``` 3. Save. It's done. This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,25 +0,0 @@ -
renatorib revised this gist
Jan 11, 2017 . 2 changed files with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ Works fine with Javascript:  File renamed without changes. -
renatorib renamed this gist
Jan 11, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
renatorib renamed this gist
Jan 11, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
renatorib renamed this gist
Jan 11, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
renatorib created this gist
Jan 11, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ atom-text-editor { text-rendering: optimizeLegibility; font-family: "Operator Mono"; font-weight: 400; line-height: 1.7; } atom-pane atom-text-editor { margin-top: 10px; margin-bottom: 10px; padding: 0; } atom-text-editor::shadow { .storage.type.function.arrow, .keyword.operator, .meta.brace { font-family: "Fira Code"; } .string.quoted, .string.regexp { -webkit-font-feature-settings: "liga" off, "calt" off; } }