Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Last active March 11, 2021 00:56
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save fdaciuk/8b3269a3d797ee723672 to your computer and use it in GitHub Desktop.
Save fdaciuk/8b3269a3d797ee723672 to your computer and use it in GitHub Desktop.
Sublime Configurations

Sublime Configurations

Install Package Control:

https://sublime.wbond.net/installation#st3

Install Fonts:

Install Packages

  • Alignment
  • Bracketeer
  • BracketHighlighter
  • CodeIvate (https://codeivate.com)
  • Color Picker
  • EasyDiff
  • Editorconfig
  • EJS
  • Emmet
  • Git Gutter
  • Github Flavored Markdown Preview
  • Jade
  • Jade Snippets
  • ReactJS
  • ReactJS Snippets
  • SASS
  • Sidebar Enhancements
  • Sidebar Folders
  • Slugify
  • Stylus
  • Stylus Snippets
  • Synced Sidebar
  • Theme Soda
  • Theme Spacegray
  • Material Theme
  • WakaTime (https://wakatime.com/)
  • WordPress

User Preferences

Preferences > Settings - User

File Preferences.sublime-settings

Alignment

Preferences > Package Settings > Alignment > Settings User

File Base File.sublime-settings

Emmet

Preferences > Package Settings > Emmet > Settings User

File Base File.sublime-settings

Beautiful Themes

Add this options on your User Settings File

Spacegray

{
  "color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme",
  "theme": "Spacegray.sublime-theme"
}

Spacegray Light

{
  "color_scheme": "Packages/Theme - Spacegray/base16-ocean.light.tmTheme",
  "theme": "Spacegray Light.sublime-theme"
}

Settings for Spacegray Eighties

{
  "color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme",
  "theme": "Spacegray Eighties.sublime-theme"
}

Seti_UI

{
  "color_scheme": "Packages/Seti_UI/Scheme/Seti.tmTheme",
  "theme": "Seti.sublime-theme",
  "Seti_tabs_small": true,
  "margin": 0,
  "draw_minimap_border": true
}

Material Theme

{
  "theme": "Material-Theme.sublime-theme",
  "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
  "overlay_scroll_bars": "enabled",
  "always_show_minimap_viewport": true,
  "bold_folder_labels": true
}
{
"alignment_chars": ["=", ":"],
"alignment_space_chars": ["=", ":"]
}
{
"syntaxProfiles": {
"html": "xhtml"
}
}
#!/bin/bash
FONT_NAME="Hack"
URL="https://github.com/chrissimpkins/Hack/releases/download/v2.013/Hack-v2_013-ttf.zip"
mkdir /tmp/$FONT_NAME
cd /tmp/$FONT_NAME
wget $URL -O "`echo $FONT_NAME`.zip"
unzip -o -j ${FONT_NAME}.zip
sudo mkdir /usr/share/fonts/truetype/$FONT_NAME
sudo cp -rf /tmp/$FONT_NAME/. /usr/share/fonts/truetype/$FONT_NAME/.
fc-cache -f -v
{
"caret_style": "phase",
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme",
"copy_with_empty_selection": false,
"detect_slow_plugins": false,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".sass-cache"
],
"font_face": "SourceCodePro",
"font_size": 9,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"reveal-on-activate": false,
"rulers": [ 80 ],
"soda_folder_icons": true,
"theme": "Spacegray.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true
}
#!/bin/bash
FONT_NAME="SourceCodePro"
URL="https://github.com/adobe-fonts/source-code-pro/archive/2.010R-ro/1.030R-it.zip"
mkdir /tmp/$FONT_NAME
cd /tmp/$FONT_NAME
wget $URL -O "`echo $FONT_NAME`.zip"
unzip -o -j ${FONT_NAME}.zip
sudo mkdir /usr/share/fonts/truetype/$FONT_NAME
sudo cp -rf /tmp/$FONT_NAME/. /usr/share/fonts/truetype/$FONT_NAME/.
fc-cache -f -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment