#4. Sublime settings
Must have these following settings before using sublime text editor for better software development. Many developer use Sublime as text editor for software development. Sublime is easy to use and have lots of features that we need in day to day life of software development. Here are some of the hacks that we can try. Setting #1 Go to, Preferences -> Settings copy and paste the followings code, { "color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme", "font_size": 11, "ignored_packages": [ "Vintage" ], "save_on_focus_lost": true, "tab_size": 2, "theme": "Adaptive.sublime-theme", "translate_tabs_to_spaces": true } Setting #2 Go to Preferences -> Settings - Syntax Specific copy and paste the followings code, // These settings override both User and Default settings for the Ruby syntax { "detect_indentation": false, "defau...