├── .bundle └── config ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin └── tm2deftheme ├── data └── scopes-to-faces.yml ├── generatedThemes ├── bespin-theme.el ├── birds-of-paradise-theme.el ├── bone-a-kite-theme.el ├── ciapre-black-theme.el ├── ciapre-theme.el ├── earthsong-light-theme.el ├── mbo-theme.el ├── railscasts-theme.el ├── resesif-boned-theme.el ├── rhuk-theme.el ├── tech49-theme.el └── twilight-theme.el ├── install-generated-themes.el ├── lib ├── tm2deftheme │ └── version.rb └── tmtheme-to-deftheme.rb ├── sampleThemes ├── Bespin.tmTheme ├── Birds of Paradise.tmTheme ├── Bone-a-kite.tmTheme ├── Ciapre Black.tmTheme ├── Ciapre.tmTheme ├── README.md ├── RailsCasts.tmTheme ├── Resesif Boned.tmTheme ├── Rhuk.tmTheme ├── Tech49.tmTheme ├── Twilight.tmTheme ├── earthsong-light.tmTheme └── mbo.tmTheme ├── slides.gif ├── spec └── spec_helper.rb ├── templates └── deftheme.erb.el ├── test.sh └── tm2deftheme.gemspec /.bundle/config: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled 2 | 3 | *.gem 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/README.md -------------------------------------------------------------------------------- /bin/tm2deftheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/bin/tm2deftheme -------------------------------------------------------------------------------- /data/scopes-to-faces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/data/scopes-to-faces.yml -------------------------------------------------------------------------------- /generatedThemes/bespin-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/bespin-theme.el -------------------------------------------------------------------------------- /generatedThemes/birds-of-paradise-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/birds-of-paradise-theme.el -------------------------------------------------------------------------------- /generatedThemes/bone-a-kite-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/bone-a-kite-theme.el -------------------------------------------------------------------------------- /generatedThemes/ciapre-black-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/ciapre-black-theme.el -------------------------------------------------------------------------------- /generatedThemes/ciapre-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/ciapre-theme.el -------------------------------------------------------------------------------- /generatedThemes/earthsong-light-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/earthsong-light-theme.el -------------------------------------------------------------------------------- /generatedThemes/mbo-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/mbo-theme.el -------------------------------------------------------------------------------- /generatedThemes/railscasts-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/railscasts-theme.el -------------------------------------------------------------------------------- /generatedThemes/resesif-boned-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/resesif-boned-theme.el -------------------------------------------------------------------------------- /generatedThemes/rhuk-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/rhuk-theme.el -------------------------------------------------------------------------------- /generatedThemes/tech49-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/tech49-theme.el -------------------------------------------------------------------------------- /generatedThemes/twilight-theme.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/generatedThemes/twilight-theme.el -------------------------------------------------------------------------------- /install-generated-themes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/install-generated-themes.el -------------------------------------------------------------------------------- /lib/tm2deftheme/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/lib/tm2deftheme/version.rb -------------------------------------------------------------------------------- /lib/tmtheme-to-deftheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/lib/tmtheme-to-deftheme.rb -------------------------------------------------------------------------------- /sampleThemes/Bespin.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Bespin.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Birds of Paradise.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Birds of Paradise.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Bone-a-kite.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Bone-a-kite.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Ciapre Black.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Ciapre Black.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Ciapre.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Ciapre.tmTheme -------------------------------------------------------------------------------- /sampleThemes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/README.md -------------------------------------------------------------------------------- /sampleThemes/RailsCasts.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/RailsCasts.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Resesif Boned.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Resesif Boned.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Rhuk.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Rhuk.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Tech49.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Tech49.tmTheme -------------------------------------------------------------------------------- /sampleThemes/Twilight.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/Twilight.tmTheme -------------------------------------------------------------------------------- /sampleThemes/earthsong-light.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/earthsong-light.tmTheme -------------------------------------------------------------------------------- /sampleThemes/mbo.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/sampleThemes/mbo.tmTheme -------------------------------------------------------------------------------- /slides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/slides.gif -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/deftheme.erb.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/templates/deftheme.erb.el -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/test.sh -------------------------------------------------------------------------------- /tm2deftheme.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsfodder/tmtheme-to-emacs/HEAD/tm2deftheme.gemspec --------------------------------------------------------------------------------