Cmd.gs

my digital notepad

tools: sublime text 3 plugins

July 29, 2020 — cmcipriano

here are some sublime text 3 plugins that are very useful to me

here is how you install on an OSX machine [command] + [shift] + p

then select "Package Control: Install Package"

then install the following:

  • Trimmer, to trim-off excess spaces
  • CursorRuler, i really like reminding myself on where the curson is
  • GitGutter, again, just want to remind myself on the last edits on my code

also here is my settings: {
"color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme",
"detect_indentation": false,
"draw_white_space": "all",
"font_face": "Monoid Nerd Font Mono",
"font_size": 8,
"highlight_line": true,
"ignored_packages": ["Vintage"],
"save_on_focus_lost": true,
"tab_size": 4,
"theme": "Default.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": false
}

Tags: editor