Personal checklist for setting up a development environment. Inspired by mdo/config
0

Configure Feed

Select the types of activity you want to include in your feed.

config / IDE / atom / config.cson
997 B 44 lines
1"*": 2 "Sublime-Style-Column-Selection": 3 mouseButtonTrigger: "Middle" 4 selectKeyTrigger: "None" 5 # default is Alt+Left 6 # "Sublime-Style-Column-Selection": {} 7 pigments: 8 markerType: "background" 9 welcome: 10 showOnStartup: false 11 core: 12 disabledPackages: [ 13 "clang-format" 14 "AtomicChar" 15 "markdown-table-formatter" 16 "wrap" 17 "atom-ctags" 18 "terminal-status" 19 "atom-terminal-panel" 20 ] 21 themes: [ 22 "atom-dark-ui" 23 "railscast-theme" 24 ] 25 editor: 26 softWrap: true 27 showInvisibles: true 28 fonts: 29 # http://app.programmingfonts.org/ 30 # fontFamily: "Source Code Pro" 31 fontFamily: "FiraCode" 32 # fontFamily: "Fantasque Sans Mono" 33 # fontFamily: "DejaVu Mono" 34 # fontFamily: "Iosevka" 35 "symbols-tree-view": 36 autoHide: true 37 autoToggle: true 38 "atom-terminal": 39 surpressDirectoryArgument: false 40 minimap: 41 absoluteMode: true 42 "file-types": 43 "jade.tag": "source.jade", 44 "tag": "text.html"