Skip to content

Instantly share code, notes, and snippets.

@alameenkhader
Last active October 4, 2018 06:17
Show Gist options
  • Save alameenkhader/ad22ef4db3cc3d3f8022 to your computer and use it in GitHub Desktop.
Save alameenkhader/ad22ef4db3cc3d3f8022 to your computer and use it in GitHub Desktop.
Sublime - All you want

To install sublime text 3 sudo add-apt-repository ppa:webupd8team/sublime-text-3 sudo apt-get update sudo apt-get install sublime-text-installer More Info: http://askubuntu.com/questions/172698/how-do-i-install-sublime-text-2-3

To install Package Control https://sublime.wbond.net/installation#st2

User Settings

{
	"color_inactive_tabs": true,
	"font_size": 12,
	"highlight_modified_tabs": true,
	"ignored_packages":
	[
		"Vintage"
	],
	"sidebar_size_12": true,
	"tab_size": 2,
	"tabs_small": true,
	"translate_tabs_to_spaces": true,
	"trim_trailing_white_space_on_save": true,
	"ensure_newline_at_eof_on_save": true
}

User Key bindings

[
  { "keys": ["ctrl+alt+c"], "command": "rubocop_check_single_file" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment