Skip to content

Instantly share code, notes, and snippets.

@hoangddt
Last active October 3, 2018 03:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoangddt/2b60c6cd2d62d08ca2e0ec7c1a4e6aee to your computer and use it in GitHub Desktop.
Save hoangddt/2b60c6cd2d62d08ca2e0ec7c1a4e6aee to your computer and use it in GitHub Desktop.
Code Editor setting
// VS COde
{
    "window.zoomLevel": 0,
    "workbench.colorTheme": "Material Theme",
    "editor.fontFamily": "Inconsolata-g",
    // "editor.fontWeight": "100",
    "editor.fontSize": 11,
    "editor.letterSpacing": 0.3,
    "editor.minimap.showSlider": "always",
    "workbench.iconTheme": "eq-material-theme-icons",
    "workbench.statusBar.visible": true,
    "workbench.activityBar.visible": false,
    "gitlens.codeLens.recentChange.enabled": false,
    "gitlens.codeLens.authors.enabled": false,
    "gitlens.currentLine.enabled": true,
    "files.associations": {
        "*.tpl": "properties"
    },
}
// Sublime Text
{
	"always_show_minimap_viewport": true,
	"bold_folder_labels": true,
	"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
	"font_face": "Inconsolata -g",
	"font_size": 11,
	"ignored_packages":
	[
		"Git Formats",
		"Vintage"
	],
	"indent_guide_options":
	[
		"draw_normal",
		"draw_active"
	],
	"line_padding_bottom": 3,
	"line_padding_top": 3,
	"overlay_scroll_bars": "enabled",
	"theme": "Material-Theme.sublime-theme"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment