├── .brackets.json ├── .gitignore ├── examples ├── 7z.7z ├── batch.bat ├── bzip.bzip ├── coffeescript.coffee ├── command.command ├── conf.conf ├── css.css ├── dust.dust ├── editorconfig.org ├── ejs.ejs ├── eot.eot ├── erb.erb ├── gif.gif ├── gitattributes.gitattributes ├── gitignore.gitignore ├── gitmodules.gitmodules ├── gz.gz ├── haml.haml ├── htaccess.htaccess ├── htm.htm ├── html.html ├── htpasswd.htpasswd ├── ico.ico ├── jade.jade ├── java.java ├── javascript.js ├── jpeg.jpeg ├── json.json ├── less.less ├── livescript.ls ├── log.log ├── map.map ├── markdown.md ├── mp3.mp3 ├── mp4.mp4 ├── npmignore.npmignore ├── php.php ├── plist.plist ├── png.png ├── project.project ├── py.py ├── pyc.pyc ├── rar.rar ├── rb.rb ├── rdoc.rdoc ├── sass.sass ├── sql.sql ├── stylus.styl ├── svg.svg ├── text.txt ├── tgz.tgz ├── tiff.tiff ├── ttf.ttf ├── typescript.ts ├── woff.woff ├── xml.xml ├── yaml.yml └── zip.zip ├── fonts └── icomoon_v2.woff ├── main.js ├── package.json ├── readme.md ├── screenshots ├── screenshot1.jpg └── screenshot2.png └── styles └── style.css /.brackets.json: -------------------------------------------------------------------------------- 1 | { 2 | "spaceUnits": 2 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /examples/7z.7z: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/batch.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/bzip.bzip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/coffeescript.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/command.command: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/conf.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/css.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dust.dust: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/editorconfig.org: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ejs.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/eot.eot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/erb.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gif.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gitattributes.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gitignore.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gitmodules.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gz.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/haml.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/htaccess.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/htm.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/html.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/htpasswd.htpasswd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ico.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/jade.jade: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/java.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/javascript.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/jpeg.jpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/json.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/less.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/livescript.ls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/log.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/map.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/markdown.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/mp3.mp3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/mp4.mp4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/npmignore.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/php.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/plist.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/png.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/project.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/py.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/pyc.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rar.rar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rb.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rdoc.rdoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/sass.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/sql.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/stylus.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/svg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/text.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tgz.tgz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tiff.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ttf.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/typescript.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/woff.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/xml.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/yaml.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/zip.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fonts/icomoon_v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewbkoch/Brackets-File-Icons/HEAD/fonts/icomoon_v2.woff -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewbkoch/Brackets-File-Icons/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewbkoch/Brackets-File-Icons/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewbkoch/Brackets-File-Icons/HEAD/readme.md -------------------------------------------------------------------------------- /screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewbkoch/Brackets-File-Icons/HEAD/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewbkoch/Brackets-File-Icons/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewbkoch/Brackets-File-Icons/HEAD/styles/style.css --------------------------------------------------------------------------------