All Projects → dannynimmo → Sublime Text

dannynimmo / Sublime Text

Personal Sublime Text setup

Projects that are alternatives of or similar to Sublime Text

Processing Sublime
A Sublime Text package for the programming language Processing
Stars: ✭ 447 (+2252.63%)
Mutual labels:  sublime-text
Dev Setup
macOS development environment setup: Easy-to-understand instructions with automated setup scripts for developer tools like Vim, Sublime Text, Bash, iTerm, Python data analysis, Spark, Hadoop MapReduce, AWS, Heroku, JavaScript web development, Android development, common data stores, and dev-based OS X defaults.
Stars: ✭ 5,590 (+29321.05%)
Mutual labels:  sublime-text
Text Pastry
Extend the power of multiple selections in Sublime Text. Modify selections, insert numeric sequences, incremental numbers, generate uuids, date ranges, insert continuously from a word list and more.
Stars: ✭ 782 (+4015.79%)
Mutual labels:  sublime-text
Git Peek
git repo to local editor instantly
Stars: ✭ 485 (+2452.63%)
Mutual labels:  sublime-text
Sublime text
Issue tracker for Sublime Text
Stars: ✭ 602 (+3068.42%)
Mutual labels:  sublime-text
Lucario
The best flat theme for Vim, Atom, Sublime Text, Jetbrains Editors, Terminal.app, iTerm, Xcode and XTerm
Stars: ✭ 711 (+3642.11%)
Mutual labels:  sublime-text
Neovintageous
Vim emulation layer for Sublime Text.
Stars: ✭ 411 (+2063.16%)
Mutual labels:  sublime-text
Devskim Sublime Plugin
DEPRECATED -- DevSkim plugin for Sublime Text 3.
Stars: ✭ 16 (-15.79%)
Mutual labels:  sublime-text
Aligntab
An alignment plugin for Sublime Text using regular expression
Stars: ✭ 611 (+3115.79%)
Mutual labels:  sublime-text
A File Icon
Sublime Text File-Specific Icons for Improved Visual Grepping
Stars: ✭ 767 (+3936.84%)
Mutual labels:  sublime-text
Sublime Monokai Extended
Extends Monokai from Soda with additional syntax highlighting for Markdown, LESS, HTML, Handlebars and more.
Stars: ✭ 505 (+2557.89%)
Mutual labels:  sublime-text
Javascriptenhancements
JavaScript Enhancements is a plugin for Sublime Text 3. It offers not only a smart javascript autocomplete but also a lot of features about creating, developing and managing javascript projects (real-time errors, code refactoring, etc.).
Stars: ✭ 592 (+3015.79%)
Mutual labels:  sublime-text
Suplemon
🍋 Console (CLI) text editor with multi cursor support. Suplemon replicates Sublime Text like functionality in the terminal. Try it out, give feedback, fork it!
Stars: ✭ 734 (+3763.16%)
Mutual labels:  sublime-text
Sublime Jsfmt
jsfmt plugin for Sublime Text
Stars: ✭ 480 (+2426.32%)
Mutual labels:  sublime-text
Sublime Phpcs
🔍 PHP CodeSniffer, PHP Coding Standard Fixer, Linter and Mess Detector Support for Sublime Text
Stars: ✭ 805 (+4136.84%)
Mutual labels:  sublime-text
Themer
themer is inspired by trevordmiller/nova and chriskempson/base16.
Stars: ✭ 4,483 (+23494.74%)
Mutual labels:  sublime-text
Sublime Markdown Extended
Top 100 Sublime Text plugin! Markdown syntax highlighter for Sublime Text, with extended support for GFM fenced code blocks, with language-specific syntax highlighting. YAML Front Matter. Works with ST2/ST3. Goes great with Assemble.
Stars: ✭ 645 (+3294.74%)
Mutual labels:  sublime-text
Sublimetext
Caddyfile syntax highlighting for Sublime Text 3
Stars: ✭ 17 (-10.53%)
Mutual labels:  sublime-text
Rmate
Remote TextMate 2 implemented as shell script
Stars: ✭ 807 (+4147.37%)
Mutual labels:  sublime-text
Sublimetext Codeformatter
Code Formatter plugin for ST2/ST3
Stars: ✭ 765 (+3926.32%)
Mutual labels:  sublime-text

Sublime Text Setup

A list of all my Sublime Text packages, preferences, and other stuff related to my daily toolkit.

Sublime Text 2 screenshot

Theme, Colour Scheme, & Font

Packages

Syntaxes

  • ApacheConf - Syntax highlighting for Apache config files (e.g. .htaccess)
  • jQuery - jQuery snippets & autocomplete
  • PHP-Twig - Twig syntax highlighting

Preferences

{
    // Leaves the window open if all tabs are closed
    "close_windows_when_empty": false,

    // Nice dark color scheme with pastel colours
    "color_scheme": "Packages/Color Scheme - Default/Tomorrow-Night-Eighties.tmTheme",

    // I like to force spaces on everyone
    "detect_indentation": false,

    // I know some plugins are slow but I can live with it
    "detect_slow_plugins": false,

    // I'm from New Zealand, download dictionaries from: http://extensions.services.openoffice.org/en/dictionaries
    "dictionary": "Packages/Language - English/en_NZ.dic",

    // Disables dragging of text, I used to always accidentally do this
    "drag_text": false,

    // Personal preference
    "ensure_newline_at_eof_on_save": true,

    // Most files these days are UTF-8
    "fallback_encoding": "UTF-8",

    // I don't use code folding
    "fold_buttons": false,

    // Beautiful fixed width font, available here: http://www.levien.com/type/myfonts/inconsolata.html
    "font_face": "Inconsolata",

    // Large enough
    "font_size": 14.0,

    // Highlight the line the cursor/s is/are in
    "highlight_line": true,

    // Displays an indicator on tabs that have unsaved changes
    "highlight_modified_tabs": true,

    // On exit, application will ask to save unsaved changes
    "hot_exit": false,

    // These give nice spacing between lines
    "line_padding_bottom": 1,
    "line_padding_top": 1,

    // When files are double clicked/dragged onto Sublime they open in the current window
    "open_files_in_new_window": false,

    // When the application is quit and restared no open files are remembered
    "remember_open_files": false,

    // Allows to scroll past the end of the file to position the last line in the middle of the window
    "scroll_past_end": true,

    // Shift+Tab unindents the current line/s
    "shift_tab_unindent": true,

    // Nice dark theme with a dark sidebar
    "theme": "Soda Dark.sublime-theme",

    // Use spaces for indenting
    "translate_tabs_to_spaces": true,

    // Removes all trailing spaces/tabs from the ends of lines
    "trim_trailing_white_space_on_save": true,

    // Caret is slightly wider than normal
    "wide_caret": true,

    // Disable word wrapping
    "word_wrap": false
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].