cd ~/.config/sublime-text-3/Packages \
&& rm -rf CoffeeScript \
&& git clone https://github.com/Xavura/CoffeeScript-Sublime-Plugin.git CoffeeScriptcd ~/.config/sublime-text-3/Packages \
&& rm -rf LiveReload \
&& git clone -b devel https://github.com/dz0ny/LiveReload-sublimetext2.git LiveReloadSettings - User into Sublime.
More info how to achieve this you can find Settings - UserPreferences > Gruvbox Dark and choose gruvbox.cd ~/.config/sublime-text-3/Packages \
&& rm -rf "ColorSchemeSelector" \
&& git clone https://github.com/jugyo/SublimeColorSchemeSelector.git "ColorSchemeSelector"[
{ keys: ["alt+up"], command: "swap_line_up" },
{ keys: ["alt+down"], command: "swap_line_down" },
{ keys: ["ctrl+shift+up"], command: "duplicate_line" },
{ keys: ["ctrl+shift+down"], command: "duplicate_line" },
{ keys: ["ctrl+shift+x"], command: "swap_case" },
{ keys: ["ctrl+f5"], command: "refresh_folder_list" },
// Quick rename of current file (require SideBar Enhancements plug-in)
{ keys: ["f2"], command: "side_bar_move" },
// Toggle side bar
{ keys: ["f9"], command: "toggle_side_bar" },
];{
// Colors + Themes
"theme": "Soda Dark 3.sublime-theme",
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme",
// Font
"font_face": "Ubuntu Mono",
"font_size": 15.0,
"line_padding_bottom": 0,
"line_padding_top": 0,
"highlight_line": true,
"font_options": ["subpixel_antialias", "no_bold"],
// Editor behavior
"spell_check": false,
"dictionary": "Packages/Language - English/en_US.dic",
"open_files_in_new_window": false,
"highlight_modified_tabs": true,
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"fade_fold_buttons": false,
"draw_minimap_border": true,
"find_selected_text": true,
"rulers": [79, 100],
"show_encoding": true,
"scroll_past_end": false,
"caret_style": "solid",
"wide_caret": true,
// Ignored packages
"ignored_packages": ["Vintage"],
// Whitespace - no tabs, trimming, end files with \n
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true,
// Sidebar - exclude distracting files and folders
"file_exclude_patterns": [
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
],
"folder_exclude_patterns": [".git", "__pycache__", "env", "env3"],
}