mirror of
https://github.com/atom/atom.git
synced 2026-02-08 05:35:04 -05:00
226 lines
6.7 KiB
CoffeeScript
226 lines
6.7 KiB
CoffeeScript
path = require 'path'
|
|
fs = require 'fs-plus'
|
|
|
|
# This is loaded by atom.coffee. See https://atom.io/docs/api/latest/Config for
|
|
# more information about config schemas.
|
|
module.exports =
|
|
core:
|
|
type: 'object'
|
|
properties:
|
|
ignoredNames:
|
|
type: 'array'
|
|
default: [".git", ".hg", ".svn", ".DS_Store", "._*", "Thumbs.db"]
|
|
items:
|
|
type: 'string'
|
|
excludeVcsIgnoredPaths:
|
|
type: 'boolean'
|
|
default: true
|
|
title: 'Exclude VCS Ignored Paths'
|
|
followSymlinks:
|
|
type: 'boolean'
|
|
default: true
|
|
title: 'Follow symlinks'
|
|
description: 'Used when searching and when opening files with the fuzzy finder.'
|
|
disabledPackages:
|
|
type: 'array'
|
|
default: []
|
|
items:
|
|
type: 'string'
|
|
customFileTypes:
|
|
type: 'object'
|
|
default: {}
|
|
description: 'Associates scope names (e.g. "source.js") with arrays of file extensions and file names (e.g. ["Somefile", ".js2"])'
|
|
additionalProperties:
|
|
type: 'array'
|
|
items:
|
|
type: 'string'
|
|
themes:
|
|
type: 'array'
|
|
default: ['one-dark-ui', 'one-dark-syntax']
|
|
items:
|
|
type: 'string'
|
|
projectHome:
|
|
type: 'string'
|
|
default: path.join(fs.getHomeDirectory(), 'github')
|
|
audioBeep:
|
|
type: 'boolean'
|
|
default: true
|
|
destroyEmptyPanes:
|
|
type: 'boolean'
|
|
default: true
|
|
fileEncoding:
|
|
description: 'Default character set encoding to use when reading and writing files.'
|
|
type: 'string'
|
|
default: 'utf8'
|
|
enum: [
|
|
'cp437',
|
|
'eucjp',
|
|
'euckr',
|
|
'gbk',
|
|
'iso88591',
|
|
'iso885910',
|
|
'iso885913',
|
|
'iso885914',
|
|
'iso885915',
|
|
'iso885916',
|
|
'iso88592',
|
|
'iso88593',
|
|
'iso88594',
|
|
'iso88595',
|
|
'iso88596',
|
|
'iso88597',
|
|
'iso88597',
|
|
'iso88598',
|
|
'koi8r',
|
|
'koi8u',
|
|
'macroman',
|
|
'shiftjis',
|
|
'utf16be',
|
|
'utf16le',
|
|
'utf8',
|
|
'windows1250',
|
|
'windows1251',
|
|
'windows1252',
|
|
'windows1253',
|
|
'windows1254',
|
|
'windows1255',
|
|
'windows1256',
|
|
'windows1257',
|
|
'windows1258',
|
|
'windows866'
|
|
]
|
|
disableInitialEmptyEditor:
|
|
description: 'Disable the initial empty editor when atom starts.'
|
|
type: 'boolean'
|
|
default: false
|
|
|
|
editor:
|
|
type: 'object'
|
|
properties:
|
|
# These settings are used in scoped fashion only. No defaults.
|
|
commentStart:
|
|
type: ['string', 'null']
|
|
commentEnd:
|
|
type: ['string', 'null']
|
|
increaseIndentPattern:
|
|
type: ['string', 'null']
|
|
decreaseIndentPattern:
|
|
type: ['string', 'null']
|
|
foldEndPattern:
|
|
type: ['string', 'null']
|
|
|
|
# These can be used as globals or scoped, thus defaults.
|
|
fontFamily:
|
|
type: 'string'
|
|
default: ''
|
|
fontSize:
|
|
type: 'integer'
|
|
default: 14
|
|
minimum: 1
|
|
maximum: 100
|
|
lineHeight:
|
|
type: ['string', 'number']
|
|
default: 1.5
|
|
showInvisibles:
|
|
type: 'boolean'
|
|
default: false
|
|
showIndentGuide:
|
|
type: 'boolean'
|
|
default: false
|
|
showLineNumbers:
|
|
type: 'boolean'
|
|
default: true
|
|
autoIndent:
|
|
type: 'boolean'
|
|
default: true
|
|
description: 'Automatically indent the cursor when inserting a newline'
|
|
autoIndentOnPaste:
|
|
type: 'boolean'
|
|
default: true
|
|
nonWordCharacters:
|
|
type: 'string'
|
|
default: "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-…"
|
|
preferredLineLength:
|
|
type: 'integer'
|
|
default: 80
|
|
minimum: 1
|
|
tabLength:
|
|
type: 'integer'
|
|
default: 2
|
|
enum: [1, 2, 3, 4, 6, 8]
|
|
softWrap:
|
|
type: 'boolean'
|
|
default: false
|
|
description: 'Wraps lines that exceed the width of the window. When `Soft Wrap At Preferred Line Length` is set, it will wrap to the number of characters defined by the `Preferred Line Length` setting.'
|
|
softTabs:
|
|
type: 'boolean'
|
|
default: true
|
|
tabType:
|
|
type: 'string'
|
|
default: 'auto'
|
|
enum: ['auto', 'soft', 'hard']
|
|
description: 'Determine character inserted during Tab keypress.'
|
|
softWrapAtPreferredLineLength:
|
|
type: 'boolean'
|
|
default: false
|
|
description: 'Will wrap to the number of characters defined by the `Preferred Line Length` setting. This will only take effect when soft wrap is enabled globally or for the current language.'
|
|
softWrapHangingIndent:
|
|
type: 'integer'
|
|
default: 0
|
|
minimum: 0
|
|
scrollSensitivity:
|
|
type: 'integer'
|
|
default: 40
|
|
minimum: 10
|
|
maximum: 200
|
|
scrollPastEnd:
|
|
type: 'boolean'
|
|
default: false
|
|
undoGroupingInterval:
|
|
type: 'integer'
|
|
default: 300
|
|
minimum: 0
|
|
description: 'Time interval in milliseconds within which operations will be grouped together in the undo history'
|
|
useShadowDOM:
|
|
type: 'boolean'
|
|
default: true
|
|
title: 'Use Shadow DOM'
|
|
description: 'Disable if you experience styling issues with packages or themes. Be sure to open an issue on the relevant package or theme, because this option is going away eventually.'
|
|
confirmCheckoutHeadRevision:
|
|
type: 'boolean'
|
|
default: true
|
|
title: 'Confirm Checkout HEAD Revision'
|
|
backUpBeforeSaving:
|
|
type: 'boolean'
|
|
default: false
|
|
description: 'Ensure file contents aren\'t lost if there is an I/O error during save by making a temporary backup copy.'
|
|
invisibles:
|
|
type: 'object'
|
|
properties:
|
|
eol:
|
|
type: ['boolean', 'string']
|
|
default: '\u00ac'
|
|
maximumLength: 1
|
|
space:
|
|
type: ['boolean', 'string']
|
|
default: '\u00b7'
|
|
maximumLength: 1
|
|
tab:
|
|
type: ['boolean', 'string']
|
|
default: '\u00bb'
|
|
maximumLength: 1
|
|
cr:
|
|
type: ['boolean', 'string']
|
|
default: '\u00a4'
|
|
maximumLength: 1
|
|
zoomFontWhenCtrlScrolling:
|
|
type: 'boolean'
|
|
default: process.platform isnt 'darwin'
|
|
description: 'Increase/decrease the editor font size when pressing the Ctrl key and scrolling the mouse up/down.'
|
|
|
|
if process.platform in ['win32', 'linux']
|
|
module.exports.core.properties.autoHideMenuBar =
|
|
type: 'boolean'
|
|
default: false
|
|
description: 'Automatically hide the menu bar and toggle it by pressing Alt. This is only supported on Windows & Linux.'
|