I have a problem. Earlier I used Ubuntu, but now I've installed an Elementary OS to my notebook and then installed a sublime text 3. But I don't like a font_face in new OS. It is not so good, like it was in Ubuntu, e.g. Zero sign is not striped. And also keywords is not italic like. Can you help me to fix it?
Font face in sublime text 3 using Elementary OS
15.4k Views Asked by Mike_Device At
2
There are 2 best solutions below
2
Nima
On
From here, changing the font can be done via adding these lines to Preferences/Settings - User:
"font_face": "Courier New",
"font_size": 10
Related Questions in UBUNTU
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- EMACS-Live + Slime error at startup
- Vagrant - Ansible error installing Apache
- Openfire Smack Connection issue
- Error in Ruby on Rails on Ubuntu 14.04
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- C++ string and char* manipulation acting weird
- Data transfer between Ubuntu/Windows to network
- How to upgrade Node js version to 0.12.4 on Ubuntu
- How do I install Intellij on Ubuntu 15.04?
- Can't run django-admin startproject mysite (ubuntu, django.core.exceptions.ImproperlyConfigured)
- How to add apt key with --recv-keys instead of --recv?
- Express - Multiparty/Formidable unable to parse files greater than 100kb on Ubuntu. Callback of Parse is not called at all
- Unable start mongoose im in ubuntu. process crashes
- Tkinter application topmost, even over fullscreen
Related Questions in FONT-FACE
- Firefox Windows / Linux inconstancies
- My @font-face not working at all
- How to load own font from CSS file into JavaFX application (I'm using now JDK 8u45)
- HTML custom @font-face not displaying correct font
- Loading font-face before img src
- google chrome undetermined behavior with persian font-face; some parts are showing as squares
- Using Font Awesome icons in Mailchimp campaign
- How to add custom font at wordpress
- How to use font-face on a local server (xampp)?
- css font face does not work awesomium.net
- How browser decides what to use: http or https (tinymce load of @font-face error)
- How actually @font-face work?
- Loading bootstrap font .eot in IE8
- Diacritics doesn't incorrect font with @font-face
- What can be the reason for @font-face failing to work?
Related Questions in SUBLIMETEXT3
- Force sublime text to use PATH from the shell value
- Sublimetext 3 & AngularJS - Syntax highlighting (HTML)
- Longjohn build fail Titanium
- Open current file in IntelliJ wih Sublime
- Shortcut key to show unsaved changes in Sublime Text 3
- How should I create a build system that can take STDIN in Sublime Text 3 under OSX?
- sublime text next_result open blank file
- Sublime Text line wrap and commit messages
- Sublime Text won't output Java println statements in main method
- Sublime Text: set language for each file
- Sublime text - how to select HTML table columns?
- Sublime 3; How to accurately count characters when both CR and LF are present in line termination
- Can't open folder that was dragged and dropped to sidebar in sublime text3
- Sublime Text: ignore double quotes and display correct colors for HTML tags
- How can I configure git to open the relevant COMMIT_EDITMSG in sublime text 3?
Related Questions in ITALIC
- how to make part of an output in italic - JavaScript
- Trouble Making Text italic when rendering an HTML document from Rmd via RStudio
- Why does java.awt.font.TextLayout.draw() result into incorrect spacing between Words/Characters when oblique(Italic/Bold Italic) fonts are used?
- Font face in sublime text 3 using Elementary OS
- regex for parsing italic text?
- Text editor in Java with sample functions for desktop application
- Make a node in a VB6 treeview italic
- Enable "run command prompt" shortcut in Ubuntu
- Italic Font not work for Chinese/Japanese/Korean on iOS 7
- Using italics in the title on an object from a dataframe
- Set limits for a discrete y-axis based on data and edit the y-axis labels
- Custom font in universal app
- Are there any differences between this 4 html elements?
- Jupyter / IPython Notebook text editing as markdown
- How do I get Lucida Grande italic into my application?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Open
Preferences > Settings - Userand add the following:"font_face": "Ubuntu Mono", "font_size": 10, "font_options": [],If this doesn't work, try changing the font. There are plenty of choices at Google Fonts. You just need to add the desired fonts to your collection, click the download icon in the top right, and install the .ttf's on your system, which should be as easy as opening the files and clicking on install.
Monospace is the default font in most Linux systems, but you can change it to whatever you like. However, I personally prefer the "Ubuntu Mono" font that is installed by default.
the font_option array should be blank. Sublime Text lets you add options like "no_bold", "no_italic", "no_antialias", etc...
Lastly, make sure you are editing the Settings - User page and not the Settings - Default page.