Skip to content

Instantly share code, notes, and snippets.

@dhrrgn
Created September 28, 2011 03:50
Show Gist options
  • Save dhrrgn/1246945 to your computer and use it in GitHub Desktop.
Save dhrrgn/1246945 to your computer and use it in GitHub Desktop.
A Sublime Text 2 Project file for Fuel

Sublime Text 2 Fuel Project File

Description

This sets up your Sublime Text 2 Fuel project so that your tab and line ending settings are all correct. This way if you like spaces or something, you can still use them by default.

Usage

  1. Create a file named fuel.sublime-project in your Fuel root directory (not the web root).
  2. Open with Sublime Text 2
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"tab_size": 4,
"translate_tabs_to_spaces": false,
"use_tab_stops": true,
"detect_indentation": true,
"auto_indent": true,
"trim_automatic_white_space": true,
"indent_subsequent_lines": true,
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true,
"default_line_ending": "unix"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment