
commit
6a28bf0f85
336 changed files with 158864 additions and 0 deletions
@ -0,0 +1,27 @@
|
||||
;; -*- lexical-binding: t; -*- |
||||
;; TURN ON IN INIT FILE!!!!! |
||||
|
||||
;; Make gc pauses faster by decreasing the threshold. |
||||
(setq gc-cons-threshold (* 2 1000 1000)) |
||||
|
||||
(require 'package) |
||||
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) |
||||
;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities` |
||||
;; and `package-pinned-packages`. Most users will not need or want to do this. |
||||
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) |
||||
(unless (package-installed-p 'use-package) |
||||
(package-refresh-contents) |
||||
(package-install 'use-package)) |
||||
(require 'use-package) |
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
||||
; Beancount related |
||||
(add-to-list 'load-path "~/.emacs.d/beancount-mode") |
||||
(require 'beancount) |
||||
(add-hook 'beancount-mode-hook #'outline-minor-mode) |
||||
(define-key beancount-mode-map (kbd "C-c C-n") #'outline-next-visible-heading) |
||||
(define-key beancount-mode-map (kbd "C-c C-p") #'outline-previous-visible-heading) |
||||
(define-key beancount-mode-map (kbd "C-c C-u") #'outline-up-heading) |
||||
(define-key beancount-mode-map (kbd "C-c C-d") #'outline-down-heading) |
||||
(add-to-list 'auto-mode-alist '("\\.beancount\\'" . beancount-mode)) |
||||
(add-to-list 'auto-mode-alist '("\\.bean\\'" . beancount-mode)) |
@ -0,0 +1,230 @@
|
||||
;;; all-the-icons-faces.el --- A module of faces for all-the-icons |
||||
|
||||
;; Copyright (C) 2016 Dominic Charlesworth <dgc336@gmail.com> |
||||
|
||||
;; Author: Dominic Charlesworth <dgc336@gmail.com> |
||||
;; Version: 1.0.0 |
||||
;; Package-Requires: ((emacs "24.3")) |
||||
;; URL: https://github.com/domtronn/all-the-icons.el |
||||
;; Keywords: convenient, lisp |
||||
|
||||
;; This program is free software; you can redistribute it and/or |
||||
;; modify it under the terms of the GNU General Public License |
||||
;; as published by the Free Software Foundation; either version 3 |
||||
;; of the License, or (at your option) any later version. |
||||
|
||||
;; This program is distributed in the hope that it will be useful, |
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
;; GNU General Public License for more details. |
||||
|
||||
;; You should have received a copy of the GNU General Public License |
||||
;; along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
||||
;;; Commentary: |
||||
|
||||
;; This file contains all of the faces used by the package for |
||||
;; colouring icons |
||||
|
||||
;;; Code: |
||||
|
||||
(defgroup all-the-icons-faces nil |
||||
"Manage how All The Icons icons are coloured and themed." |
||||
:prefix "all-the-icons-" |
||||
:group 'tools |
||||
:group 'all-the-icons) |
||||
|
||||
|
||||
;; red |
||||
(defface all-the-icons-red |
||||
'((((background dark)) :foreground "#AC4142") |
||||
(((background light)) :foreground "#AC4142")) |
||||
"Face for red icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lred |
||||
'((((background dark)) :foreground "#EB595A") |
||||
(((background light)) :foreground "#EB595A")) |
||||
"Face for lred icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dred |
||||
'((((background dark)) :foreground "#843031") |
||||
(((background light)) :foreground "#843031")) |
||||
"Face for dred icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-red-alt |
||||
'((((background dark)) :foreground "#ce5643") |
||||
(((background light)) :foreground "#843031")) |
||||
"Face for dred icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; green |
||||
(defface all-the-icons-green |
||||
'((((background dark)) :foreground "#90A959") |
||||
(((background light)) :foreground "#90A959")) |
||||
"Face for green icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lgreen |
||||
'((((background dark)) :foreground "#C6E87A") |
||||
(((background light)) :foreground "#3D6837")) |
||||
"Face for lgreen icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dgreen |
||||
'((((background dark)) :foreground "#6D8143") |
||||
(((background light)) :foreground "#6D8143")) |
||||
"Face for dgreen icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; yellow |
||||
(defface all-the-icons-yellow |
||||
'((((background dark)) :foreground "#FFD446") |
||||
(((background light)) :foreground "#FFCC0E")) |
||||
"Face for yellow icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lyellow |
||||
'((((background dark)) :foreground "#FFC16D") |
||||
(((background light)) :foreground "#FF9300")) |
||||
"Face for lyellow icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dyellow |
||||
'((((background dark)) :foreground "#B48D56") |
||||
(((background light)) :foreground "#B48D56")) |
||||
"Face for dyellow icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; blue |
||||
(defface all-the-icons-blue |
||||
'((((background dark)) :foreground "#6A9FB5") |
||||
(((background light)) :foreground "#6A9FB5")) |
||||
"Face for blue icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-blue-alt |
||||
'((((background dark)) :foreground "#2188b6") |
||||
(((background light)) :foreground "#2188b6")) |
||||
"Face for blue icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lblue |
||||
'((((background dark)) :foreground "#8FD7F4") |
||||
(((background light)) :foreground "#677174")) |
||||
"Face for lblue icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dblue |
||||
'((((background dark)) :foreground "#446674") |
||||
(((background light)) :foreground "#446674")) |
||||
"Face for dblue icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; maroon |
||||
(defface all-the-icons-maroon |
||||
'((((background dark)) :foreground "#8F5536") |
||||
(((background light)) :foreground "#8F5536")) |
||||
"Face for maroon icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lmaroon |
||||
'((((background dark)) :foreground "#CE7A4E") |
||||
(((background light)) :foreground "#CE7A4E")) |
||||
"Face for lmaroon icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dmaroon |
||||
'((((background dark)) :foreground "#72584B") |
||||
(((background light)) :foreground "#72584B")) |
||||
"Face for dmaroon icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; purple |
||||
(defface all-the-icons-purple |
||||
'((((background dark)) :foreground "#AA759F") |
||||
(((background light)) :foreground "#68295B")) |
||||
"Face for purple icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-purple-alt |
||||
'((((background dark)) :foreground "#5D54E1") |
||||
(((background light)) :foreground "#5D54E1")) |
||||
"Face for purple icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lpurple |
||||
'((((background dark)) :foreground "#E69DD6") |
||||
(((background light)) :foreground "#E69DD6")) |
||||
"Face for lpurple icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dpurple |
||||
'((((background dark)) :foreground "#694863") |
||||
(((background light)) :foreground "#694863")) |
||||
"Face for dpurple icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; orange |
||||
(defface all-the-icons-orange |
||||
'((((background dark)) :foreground "#D4843E") |
||||
(((background light)) :foreground "#D4843E")) |
||||
"Face for orange icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lorange |
||||
'((((background dark)) :foreground "#FFA500") |
||||
(((background light)) :foreground "#FFA500")) |
||||
"Face for lorange icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dorange |
||||
'((((background dark)) :foreground "#915B2D") |
||||
(((background light)) :foreground "#915B2D")) |
||||
"Face for dorange icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; cyan |
||||
(defface all-the-icons-cyan |
||||
'((((background dark)) :foreground "#75B5AA") |
||||
(((background light)) :foreground "#75B5AA")) |
||||
"Face for cyan icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-cyan-alt |
||||
'((((background dark)) :foreground "#61dafb") |
||||
(((background light)) :foreground "#0595bd")) |
||||
"Face for cyan icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lcyan |
||||
'((((background dark)) :foreground "#A5FDEC") |
||||
(((background light)) :foreground "#2C7D6E")) |
||||
"Face for lcyan icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dcyan |
||||
'((((background dark)) :foreground "#48746D") |
||||
(((background light)) :foreground "#48746D")) |
||||
"Face for dcyan icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; pink |
||||
(defface all-the-icons-pink |
||||
'((((background dark)) :foreground "#F2B4B8") |
||||
(((background light)) :foreground "#FC505B")) |
||||
"Face for pink icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lpink |
||||
'((((background dark)) :foreground "#FFBDC1") |
||||
(((background light)) :foreground "#FF505B")) |
||||
"Face for lpink icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dpink |
||||
'((((background dark)) :foreground "#B18286") |
||||
(((background light)) :foreground "#7E5D5F")) |
||||
"Face for dpink icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
;; silver |
||||
(defface all-the-icons-silver |
||||
'((((background dark)) :foreground "#716E68") |
||||
(((background light)) :foreground "#716E68")) |
||||
"Face for silver icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-lsilver |
||||
'((((background dark)) :foreground "#B9B6AA") |
||||
(((background light)) :foreground "#7F7869")) |
||||
"Face for lsilver icons" |
||||
:group 'all-the-icons-faces) |
||||
(defface all-the-icons-dsilver |
||||
'((((background dark)) :foreground "#838484") |
||||
(((background light)) :foreground "#838484")) |
||||
"Face for dsilver icons" |
||||
:group 'all-the-icons-faces) |
||||
|
||||
|
||||
(provide 'all-the-icons-faces) |
||||
;;; all-the-icons-faces.el ends here |
Binary file not shown.
@ -0,0 +1,12 @@
|
||||
(define-package "all-the-icons" "20220325.1238" "A library for inserting Developer icons" |
||||
'((emacs "24.3")) |
||||
:commit "65c496d3d1d1298345beb9845840067bffb2ffd8" :authors |
||||
'(("Dominic Charlesworth" . "dgc336@gmail.com")) |
||||
:maintainer |
||||
'("Dominic Charlesworth" . "dgc336@gmail.com") |
||||
:keywords |
||||
'("convenient" "lisp") |
||||
:url "https://github.com/domtronn/all-the-icons.el") |
||||
;; Local Variables: |
||||
;; no-byte-compile: t |
||||
;; End: |
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,70 @@
|
||||
(defvar all-the-icons-data/alltheicons-alist |
||||
'( |
||||
|
||||
( "apache" . "\xe909" ) |
||||
( "atom" . "\xe917" ) |
||||
( "aws" . "\xe90c" ) |
||||
( "bower" . "\xe918" ) |
||||
( "c" . "\xe915" ) |
||||
( "c-line" . "\xe90f" ) |
||||
( "clojure" . "\xe919" ) |
||||
( "clojure-line" . "\xe91a" ) |
||||
( "coffeescript" . "\xe914" ) |
||||
( "cplusplus" . "\xe913" ) |
||||
( "cplusplus-line" . "\xe910" ) |
||||
( "csharp" . "\xe911" ) |
||||
( "csharp-line" . "\xe912" ) |
||||
( "css3" . "\xe91b" ) |
||||
( "css3-alt" . "\xe91c" ) |
||||
( "d3" . "\xe90e" ) |
||||
( "dlang" . "\xe935" ) |
||||
( "elixir" . "\xe936" ) |
||||
( "erlang" . "\xe934" ) |
||||
( "git" . "\xe907" ) |
||||
( "go" . "\xe91d" ) |
||||
( "google-drive" . "\xe91e" ) |
||||
( "grunt" . "\xe90d" ) |
||||
( "grunt-line" . "\xe91f" ) |
||||
( "gulp" . "\xe920" ) |
||||
( "haskell" . "\xe921" ) |
||||
( "html5" . "\xe932" ) |
||||
( "jasmine" . "\xe904" ) |
||||
( "java" . "\xe922" ) |
||||
( "javascript" . "\xe906" ) |
||||
( "javascript-badge" . "\xe923" ) |
||||
( "javascript-shield" . "\xe924" ) |
||||
( "less" . "\xe90b" ) |
||||
( "nginx" . "\xe933" ) |
||||
( "nodejs" . "\xe925" ) |
||||
( "perl" . "\xe905" ) |
||||
( "perldocs" . "\xe926" ) |
||||
( "postgresql" . "\xe938" ) |
||||
( "prolog" . "\xe927" ) |
||||
( "python" . "\xe928" ) |
||||
( "react" . "\xe929" ) |
||||
( "ruby" . "\xe92a" ) |
||||
( "ruby-alt" . "\xe92b" ) |
||||
( "rust" . "\xe92c" ) |
||||
( "sass" . "\xe92d" ) |
||||
( "scala" . "\xe908" ) |
||||
( "script" . "\xe90a" ) |
||||
( "spring" . "\xe937" ) |
||||
( "stylus" . "\xe92e" ) |
||||
( "svg" . "\xe903" ) |
||||
( "swift" . "\xe92f" ) |
||||
( "terminal" . "\xe930" ) |
||||
( "terminal-alt" . "\xe931" ) |
||||
( "battery-charging" . "\xe939" ) |
||||
|
||||
( "arrow-left" . "\xe93a" ) |
||||
( "arrow-right" . "\xe93b" ) |
||||
( "cup-left" . "\xe93c" ) |
||||
( "cup-right" . "\xe93d" ) |
||||
( "slant-left" . "\xe93e" ) |
||||
( "slant-right" . "\xe93f" ) |
||||
( "wave-left" . "\xe940" ) |
||||
( "wave-right" . "\xe941" ) |
||||
|
||||
)) |
||||
|
||||
(provide 'data-alltheicons) |
Binary file not shown.
@ -0,0 +1,641 @@
|
||||
(defvar all-the-icons-data/fa-icon-alist |
||||
'( |
||||
|
||||
("500px" . "\xf26e") |
||||
("adjust" . "\xf042") |
||||
("adn" . "\xf170") |
||||
("align-center" . "\xf037") |
||||
("align-justify" . "\xf039") |
||||
("align-left" . "\xf036") |
||||
("align-right" . "\xf038") |
||||
("amazon" . "\xf270") |
||||
("ambulance" . "\xf0f9") |
||||
("american-sign-language-interpreting" . "\xf2a3") |
||||
("anchor" . "\xf13d") |
||||
("android" . "\xf17b") |
||||
("angellist" . "\xf209") |
||||
("angle-double-down" . "\xf103") |
||||
("angle-double-left" . "\xf100") |
||||
("angle-double-right" . "\xf101") |
||||
("angle-double-up" . "\xf102") |
||||
("angle-down" . "\xf107") |
||||
("angle-left" . "\xf104") |
||||
("angle-right" . "\xf105") |
||||
("angle-up" . "\xf106") |
||||
("apple" . "\xf179") |
||||
("archive" . "\xf187") |
||||
("area-chart" . "\xf1fe") |
||||
("arrow-circle-down" . "\xf0ab") |
||||
("arrow-circle-left" . "\xf0a8") |
||||
("arrow-circle-o-down" . "\xf01a") |
||||
("arrow-circle-o-left" . "\xf190") |
||||
("arrow-circle-o-right" . "\xf18e") |
||||
("arrow-circle-o-up" . "\xf01b") |
||||
("arrow-circle-right" . "\xf0a9") |
||||
("arrow-circle-up" . "\xf0aa") |
||||
("arrow-down" . "\xf063") |
||||
("arrow-left" . "\xf060") |
||||
("arrow-right" . "\xf061") |
||||
("arrow-up" . "\xf062") |
||||
("arrows" . "\xf047") |
||||
("arrows-alt" . "\xf0b2") |
||||
("arrows-h" . "\xf07e") |
||||
("arrows-v" . "\xf07d") |
||||
("assistive-listening-systems" . "\xf2a2") |
||||
("asterisk" . "\xf069") |
||||
("at" . "\xf1fa") |
||||
("audio-description" . "\xf29e") |
||||
("backward" . "\xf04a") |
||||
("balance-scale" . "\xf24e") |
||||
("ban" . "\xf05e") |
||||
("bar-chart" . "\xf080") |
||||
("barcode" . "\xf02a") |
||||
("bars" . "\xf0c9") |
||||
("battery-empty" . "\xf244") |
||||
("battery-full" . "\xf240") |
||||
("battery-half" . "\xf242") |
||||
("battery-quarter" . "\xf243") |
||||
("battery-three-quarters" . "\xf241") |
||||
("bed" . "\xf236") |
||||
("beer" . "\xf0fc") |
||||
("behance" . "\xf1b4") |
||||
("behance-square" . "\xf1b5") |
||||
("bell" . "\xf0f3") |
||||
("bell-o" . "\xf0a2") |
||||
("bell-slash" . "\xf1f6") |
||||
("bell-slash-o" . "\xf1f7") |
||||
("bicycle" . "\xf206") |
||||
("binoculars" . "\xf1e5") |
||||
("birthday-cake" . "\xf1fd") |
||||
("bitbucket" . "\xf171") |
||||
("bitbucket-square" . "\xf172") |
||||
("black-tie" . "\xf27e") |
||||
("blind" . "\xf29d") |
||||
("bluetooth" . "\xf293") |
||||
("bluetooth-b" . "\xf294") |
||||
("bold" . "\xf032") |
||||
("bolt" . "\xf0e7") |
||||
("bomb" . "\xf1e2") |
||||
("book" . "\xf02d") |
||||
("bookmark" . "\xf02e") |
||||
("bookmark-o" . "\xf097") |
||||
("braille" . "\xf2a1") |
||||
("briefcase" . "\xf0b1") |
||||
("btc" . "\xf15a") |
||||
("bug" . "\xf188") |
||||
("building" . "\xf1ad") |
||||
("building-o" . "\xf0f7") |
||||
("bullhorn" . "\xf0a1") |
||||
("bullseye" . "\xf140") |
||||
("bus" . "\xf207") |
||||
("buysellads" . "\xf20d") |
||||
("calculator" . "\xf1ec") |
||||
("calendar" . "\xf073") |
||||
("calendar-check-o" . "\xf274") |
||||
("calendar-minus-o" . "\xf272") |
||||
("calendar-o" . "\xf133") |
||||
("calendar-plus-o" . "\xf271") |
||||
("calendar-times-o" . "\xf273") |
||||
("camera" . "\xf030") |
||||
("camera-retro" . "\xf083") |
||||
("car" . "\xf1b9") |
||||
("caret-down" . "\xf0d7") |
||||
("caret-left" . "\xf0d9") |
||||
("caret-right" . "\xf0da") |
||||
("caret-square-o-down" . "\xf150") |
||||
("caret-square-o-left" . "\xf191") |
||||
("caret-square-o-right" . "\xf152") |
||||
("caret-square-o-up" . "\xf151") |
||||
("caret-up" . "\xf0d8") |
||||
("cart-arrow-down" . "\xf218") |
||||
("cart-plus" . "\xf217") |
||||
("cc" . "\xf20a") |
||||
("cc-amex" . "\xf1f3") |
||||
("cc-diners-club" . "\xf24c") |
||||
("cc-discover" . "\xf1f2") |
||||
("cc-jcb" . "\xf24b") |
||||
("cc-mastercard" . "\xf1f1") |
||||
("cc-paypal" . "\xf1f4") |
||||
("cc-stripe" . "\xf1f5") |
||||
("cc-visa" . "\xf1f0") |
||||
("certificate" . "\xf0a3") |
||||
("chain-broken" . "\xf127") |
||||
("check" . "\xf00c") |
||||
("check-circle" . "\xf058") |
||||
("check-circle-o" . "\xf05d") |
||||
("check-square" . "\xf14a") |
||||
("check-square-o" . "\xf046") |
||||
("chevron-circle-down" . "\xf13a") |
||||
("chevron-circle-left" . "\xf137") |
||||
("chevron-circle-right" . "\xf138") |
||||
("chevron-circle-up" . "\xf139") |
||||
("chevron-down" . "\xf078") |
||||
("chevron-left" . "\xf053") |
||||
("chevron-right" . "\xf054") |
||||
("chevron-up" . "\xf077") |
||||
("child" . "\xf1ae") |
||||
("chrome" . "\xf268") |
||||
("circle" . "\xf111") |
||||
("circle-o" . "\xf10c") |
||||
("circle-o-notch" . "\xf1ce") |
||||
("circle-thin" . "\xf1db") |
||||
("clipboard" . "\xf0ea") |
||||
("clock-o" . "\xf017") |
||||
("clone" . "\xf24d") |
||||
("cloud" . "\xf0c2") |
||||
("cloud-download" . "\xf0ed") |
||||
("cloud-upload" . "\xf0ee") |
||||
("code" . "\xf121") |
||||
("code-fork" . "\xf126") |
||||
("codepen" . "\xf1cb") |
||||
("codiepie" . "\xf284") |
||||
("coffee" . "\xf0f4") |
||||
("cog" . "\xf013") |
||||
("cogs" . "\xf085") |
||||
("columns" . "\xf0db") |
||||
("comment" . "\xf075") |
||||
("comment-o" . "\xf0e5") |
||||
("commenting" . "\xf27a") |
||||
("commenting-o" . "\xf27b") |
||||
("comments" . "\xf086") |
||||
("comments-o" . "\xf0e6") |
||||
("compass" . "\xf14e") |
||||
("compress" . "\xf066") |
||||
("connectdevelop" . "\xf20e") |
||||
("contao" . "\xf26d") |
||||
("copyright" . "\xf1f9") |
||||
("creative-commons" . "\xf25e") |
||||
("credit-card" . "\xf09d") |
||||
("credit-card-alt" . "\xf283") |
||||
("crop" . "\xf125") |
||||
("crosshairs" . "\xf05b") |
||||
("css3" . "\xf13c") |
||||
("cube" . "\xf1b2") |
||||
("cubes" . "\xf1b3") |
||||
("cutlery" . "\xf0f5") |
||||
("dashcube" . "\xf210") |
||||
("database" . "\xf1c0") |
||||
("deaf" . "\xf2a4") |
||||
("delicious" . "\xf1a5") |
||||
("desktop" . "\xf108") |
||||
("deviantart" . "\xf1bd") |
||||
("diamond" . "\xf219") |
||||
("digg" . "\xf1a6") |
||||
("dot-circle-o" . "\xf192") |
||||
("download" . "\xf019") |
||||
("dribbble" . "\xf17d") |
||||
("dropbox" . "\xf16b") |
||||
("drupal" . "\xf1a9") |
||||
("edge" . "\xf282") |
||||
("eject" . "\xf052") |
||||
("ellipsis-h" . "\xf141") |
||||
("ellipsis-v" . "\xf142") |
||||
("empire" . "\xf1d1") |
||||
("envelope" . "\xf0e0") |
||||
("envelope-o" . "\xf003") |
||||
("envelope-square" . "\xf199") |
||||
("envira" . "\xf299") |
||||
("eraser" . "\xf12d") |
||||
("eur" . "\xf153") |
||||
("exchange" . "\xf0ec") |
||||
("exclamation" . "\xf12a") |
||||
("exclamation-circle" . "\xf06a") |
||||
("exclamation-triangle" . "\xf071") |
||||
("expand" . "\xf065") |
||||
("expeditedssl" . "\xf23e") |
||||
("external-link" . "\xf08e") |
||||
("external-link-square" . "\xf14c") |
||||
("eye" . "\xf06e") |
||||
("eye-slash" . "\xf070") |
||||
("eyedropper" . "\xf1fb") |
||||
("facebook" . "\xf09a") |
||||
("facebook-official" . "\xf230") |
||||
("facebook-square" . "\xf082") |
||||
("fast-backward" . "\xf049") |
||||
("fast-forward" . "\xf050") |
||||
("fax" . "\xf1ac") |
||||
("female" . "\xf182") |
||||
("fighter-jet" . "\xf0fb") |
||||
("file" . "\xf15b") |
||||
("file-archive-o" . "\xf1c6") |
||||
("file-audio-o" . "\xf1c7") |
||||
("file-code-o" . "\xf1c9") |
||||
("file-excel-o" . "\xf1c3") |
||||
("file-image-o" . "\xf1c5") |
||||
("file-o" . "\xf016") |
||||
("file-pdf-o" . "\xf1c1") |
||||
("file-powerpoint-o" . "\xf1c4") |
||||
("file-text" . "\xf15c") |
||||
("file-text-o" . "\xf0f6") |
||||
("file-video-o" . "\xf1c8") |
||||
("file-word-o" . "\xf1c2") |
||||
("files-o" . "\xf0c5") |
||||
("film" . "\xf008") |
||||
("filter" . "\xf0b0") |
||||
("fire" . "\xf06d") |
||||
("fire-extinguisher" . "\xf134") |
||||
("firefox" . "\xf269") |
||||
("first-order" . "\xf2b0") |
||||
("flag" . "\xf024") |
||||
("flag-checkered" . "\xf11e") |
||||
("flag-o" . "\xf11d") |
||||
("flask" . "\xf0c3") |
||||
("flickr" . "\xf16e") |
||||
("floppy-o" . "\xf0c7") |
||||
("folder" . "\xf07b") |
||||
("folder-o" . "\xf114") |
||||
("folder-open" . "\xf07c") |
||||
("folder-open-o" . "\xf115") |
||||
("font" . "\xf031") |
||||
("font-awesome" . "\xf2b4") |
||||
("fonticons" . "\xf280") |
||||
("fort-awesome" . "\xf286") |
||||
("forumbee" . "\xf211") |
||||
("forward" . "\xf04e") |
||||
("foursquare" . "\xf180") |
||||
("frown-o" . "\xf119") |
||||
("futbol-o" . "\xf1e3") |
||||
("gamepad" . "\xf11b") |
||||
("gavel" . "\xf0e3") |
||||
("gbp" . "\xf154") |
||||
("genderless" . "\xf22d") |
||||
("get-pocket" . "\xf265") |
||||
("gg" . "\xf260") |
||||
("gg-circle" . "\xf261") |
||||
("gift" . "\xf06b") |
||||
("git" . "\xf1d3") |
||||
("git-square" . "\xf1d2") |
||||
("github" . "\xf09b") |
||||
("github-alt" . "\xf113") |
||||
("github-square" . "\xf092") |
||||
("gitlab" . "\xf296") |
||||
("glass" . "\xf000") |
||||
("glide" . "\xf2a5") |
||||
("glide-g" . "\xf2a6") |
||||
("globe" . "\xf0ac") |
||||
("google" . "\xf1a0") |
||||
("google-plus" . "\xf0d5") |
||||
("google-plus-official" . "\xf2b3") |
||||
("google-plus-square" . "\xf0d4") |
||||
("google-wallet" . "\xf1ee") |
||||
("graduation-cap" . "\xf19d") |
||||
("gratipay" . "\xf184") |
||||
("h-square" . "\xf0fd") |
||||
("hacker-news" . "\xf1d4") |
||||
("hand-lizard-o" . "\xf258") |
||||
("hand-o-down" . "\xf0a7") |
||||
("hand-o-left" . "\xf0a5") |
||||
("hand-o-right" . "\xf0a4") |
||||
("hand-o-up" . "\xf0a6") |
||||
("hand-paper-o" . "\xf256") |
||||
("hand-peace-o" . "\xf25b") |
||||
("hand-pointer-o" . "\xf25a") |
||||
("hand-rock-o" . "\xf255") |
||||
("hand-scissors-o" . "\xf257") |
||||
("hand-spock-o" . "\xf259") |
||||
("hashtag" . "\xf292") |
||||
("hdd-o" . "\xf0a0") |
||||
("header" . "\xf1dc") |
||||
("headphones" . "\xf025") |
||||
("heart" . "\xf004") |
||||
("heart-o" . "\xf08a") |
||||
("heartbeat" . "\xf21e") |
||||
("history" . "\xf1da") |
||||
("home" . "\xf015") |
||||
("hospital-o" . "\xf0f8") |
||||
("hourglass" . "\xf254") |
||||
("hourglass-end" . "\xf253") |
||||
("hourglass-half" . "\xf252") |
||||
("hourglass-o" . "\xf250") |
||||
("hourglass-start" . "\xf251") |
||||
("houzz" . "\xf27c") |
||||
("html5" . "\xf13b") |
||||
("i-cursor" . "\xf246") |
||||
("ils" . "\xf20b") |
||||
("inbox" . "\xf01c") |
||||
("indent" . "\xf03c") |
||||
("industry" . "\xf275") |
||||
("info" . "\xf129") |
||||
("info-circle" . "\xf05a") |
||||
("inr" . "\xf156") |
||||
("instagram" . "\xf16d") |
||||
("internet-explorer" . "\xf26b") |
||||
("ioxhost" . "\xf208") |
||||
("italic" . "\xf033") |
||||
("joomla" . "\xf1aa") |
||||
("jpy" . "\xf157") |
||||
("jsfiddle" . "\xf1cc") |
||||
("key" . "\xf084") |
||||
("keyboard-o" . "\xf11c") |
||||
("krw" . "\xf159") |
||||
("language" . "\xf1ab") |
||||
("laptop" . "\xf109") |
||||
("lastfm" . "\xf202") |
||||
("lastfm-square" . "\xf203") |
||||
("leaf" . "\xf06c") |
||||
("leanpub" . "\xf212") |
||||
("lemon-o" . "\xf094") |
||||
("level-down" . "\xf149") |
||||
("level-up" . "\xf148") |
||||
("life-ring" . "\xf1cd") |
||||
("lightbulb-o" . "\xf0eb") |
||||
("line-chart" . "\xf201") |
||||
("link" . "\xf0c1") |
||||
("linkedin" . "\xf0e1") |
||||
("linkedin-square" . "\xf08c") |
||||
("linux" . "\xf17c") |
||||
("list" . "\xf03a") |
||||
("list-alt" . "\xf022") |
||||
("list-ol" . "\xf0cb") |
||||
("list-ul" . "\xf0ca") |
||||
("location-arrow" . "\xf124") |
||||
("lock" . "\xf023") |
||||
("long-arrow-down" . "\xf175") |
||||
("long-arrow-left" . "\xf177") |
||||
("long-arrow-right" . "\xf178") |
||||
("long-arrow-up" . "\xf176") |
||||
("low-vision" . "\xf2a8") |
||||
("magic" . "\xf0d0") |
||||
("magnet" . "\xf076") |
||||
("male" . "\xf183") |
||||
("map" . "\xf279") |
||||
("map-marker" . "\xf041") |
||||
("map-o" . "\xf278") |
||||
("map-pin" . "\xf276") |
||||
("map-signs" . "\xf277") |
||||
("mars" . "\xf222") |
||||
("mars-double" . "\xf227") |
||||
("mars-stroke" . "\xf229") |
||||
("mars-stroke-h" . "\xf22b") |
||||
("mars-stroke-v" . "\xf22a") |
||||
("maxcdn" . "\xf136") |
||||
("meanpath" . "\xf20c") |
||||
("medium" . "\xf23a") |
||||
("medkit" . "\xf0fa") |
||||
("meh-o" . "\xf11a") |
||||
("mercury" . "\xf223") |
||||
("microphone" . "\xf130") |
||||
("microphone-slash" . "\xf131") |
||||
("minus" . "\xf068") |
||||
("minus-circle" . "\xf056") |
||||
("minus-square" . "\xf146") |
||||
("minus-square-o" . "\xf147") |
||||
("mixcloud" . "\xf289") |
||||
("mobile" . "\xf10b") |
||||
("modx" . "\xf285") |
||||
("money" . "\xf0d6") |
||||
("moon-o" . "\xf186") |
||||
("motorcycle" . "\xf21c") |
||||
("mouse-pointer" . "\xf245") |
||||
("music" . "\xf001") |
||||
("neuter" . "\xf22c") |
||||
("newspaper-o" . "\xf1ea") |
||||
("object-group" . "\xf247") |
||||
("object-ungroup" . "\xf248") |
||||
("odnoklassniki" . "\xf263") |
||||
("odnoklassniki-square" . "\xf264") |
||||
("opencart" . "\xf23d") |
||||
("openid" . "\xf19b") |
||||
("opera" . "\xf26a") |
||||
("optin-monster" . "\xf23c") |
||||
("outdent" . "\xf03b") |
||||
("pagelines" . "\xf18c") |
||||
("paint-brush" . "\xf1fc") |
||||
("paper-plane" . "\xf1d8") |
||||
("paper-plane-o" . "\xf1d9") |
||||
("paperclip" . "\xf0c6") |
||||
("paragraph" . "\xf1dd") |
||||
("pause" . "\xf04c") |
||||
("pause-circle" . "\xf28b") |
||||
("pause-circle-o" . "\xf28c") |
||||
("paw" . "\xf1b0") |
||||
("paypal" . "\xf1ed") |
||||
("pencil" . "\xf040") |
||||
("pencil-square" . "\xf14b") |
||||
("pencil-square-o" . "\xf044") |
||||
("percent" . "\xf295") |
||||
("phone" . "\xf095") |
||||
("phone-square" . "\xf098") |
||||
("picture-o" . "\xf03e") |
||||
("pie-chart" . "\xf200") |
||||
("pied-piper" . "\xf2ae") |
||||
("pied-piper-alt" . "\xf1a8") |
||||
("pied-piper-pp" . "\xf1a7") |
||||
("pinterest" . "\xf0d2") |
||||
("pinterest-p" . "\xf231") |
||||
("pinterest-square" . "\xf0d3") |
||||
("plane" . "\xf072") |
||||
("play" . "\xf04b") |
||||
("play-circle" . "\xf144") |
||||
("play-circle-o" . "\xf01d") |
||||
("plug" . "\xf1e6") |
||||
("plus" . "\xf067") |
||||
("plus-circle" . "\xf055") |
||||
("plus-square" . "\xf0fe") |
||||
("plus-square-o" . "\xf196") |
||||
("power-off" . "\xf011") |
||||
("print" . "\xf02f") |
||||
("product-hunt" . "\xf288") |
||||
("puzzle-piece" . "\xf12e") |
||||
("qq" . "\xf1d6") |
||||
("qrcode" . "\xf029") |
||||
("question" . "\xf128") |
||||
("question-circle" . "\xf059") |
||||
("question-circle-o" . "\xf29c") |
||||
("quote-left" . "\xf10d") |
||||
("quote-right" . "\xf10e") |
||||
("random" . "\xf074") |
||||
("rebel" . "\xf1d0") |
||||
("recycle" . "\xf1b8") |
||||
("reddit" . "\xf1a1") |
||||
("reddit-alien" . "\xf281") |
||||
("reddit-square" . "\xf1a2") |
||||
("refresh" . "\xf021") |
||||
("registered" . "\xf25d") |
||||
("renren" . "\xf18b") |
||||
("repeat" . "\xf01e") |
||||
("reply" . "\xf112") |
||||
("reply-all" . "\xf122") |
||||
("retweet" . "\xf079") |
||||
("road" . "\xf018") |
||||
("rocket" . "\xf135") |
||||
("rss" . "\xf09e") |
||||
("rss-square" . "\xf143") |
||||
("rub" . "\xf158") |
||||
("safari" . "\xf267") |
||||
("scissors" . "\xf0c4") |
||||
("scribd" . "\xf28a") |
||||
("search" . "\xf002") |
||||
("search-minus" . "\xf010") |
||||
("search-plus" . "\xf00e") |
||||
("sellsy" . "\xf213") |
||||
("server" . "\xf233") |
||||
("share" . "\xf064") |
||||
("share-alt" . "\xf1e0") |
||||
("share-alt-square" . "\xf1e1") |
||||
("share-square" . "\xf14d") |
||||
("share-square-o" . "\xf045") |
||||
("shield" . "\xf132") |
||||
("ship" . "\xf21a") |
||||
("shirtsinbulk" . "\xf214") |
||||
("shopping-bag" . "\xf290") |
||||
("shopping-basket" . "\xf291") |
||||
("shopping-cart" . "\xf07a") |
||||
("sign-in" . "\xf090") |
||||
("sign-language" . "\xf2a7") |
||||
("sign-out" . "\xf08b") |
||||
("signal" . "\xf012") |
||||
("simplybuilt" . "\xf215") |
||||
("sitemap" . "\xf0e8") |
||||
("skyatlas" . "\xf216") |
||||
("skype" . "\xf17e") |
||||
("slack" . "\xf198") |
||||
("sliders" . "\xf1de") |
||||
("slideshare" . "\xf1e7") |
||||
("smile-o" . "\xf118") |
||||
("snapchat" . "\xf2ab") |
||||
("snapchat-ghost" . "\xf2ac") |
||||
("snapchat-square" . "\xf2ad") |
||||
("sort" . "\xf0dc") |
||||
("sort-alpha-asc" . "\xf15d") |
||||
("sort-alpha-desc" . "\xf15e") |
||||
("sort-amount-asc" . "\xf160") |
||||
("sort-amount-desc" . "\xf161") |
||||
("sort-asc" . "\xf0de") |
||||
("sort-desc" . "\xf0dd") |
||||
("sort-numeric-asc" . "\xf162") |
||||
("sort-numeric-desc" . "\xf163") |
||||
("soundcloud" . "\xf1be") |
||||
("space-shuttle" . "\xf197") |
||||
("spinner" . "\xf110") |
||||
("spoon" . "\xf1b1") |
||||
("spotify" . "\xf1bc") |
||||
("square" . "\xf0c8") |
||||
("square-o" . "\xf096") |
||||
("stack-exchange" . "\xf18d") |
||||
("stack-overflow" . "\xf16c") |
||||
("star" . "\xf005") |
||||
("star-half" . "\xf089") |
||||
("star-half-o" . "\xf123") |
||||
("star-o" . "\xf006") |
||||
("steam" . "\xf1b6") |
||||
("steam-square" . "\xf1b7") |
||||
("step-backward" . "\xf048") |
||||
("step-forward" . "\xf051") |
||||
("stethoscope" . "\xf0f1") |
||||
("sticky-note" . "\xf249") |
||||
("sticky-note-o" . "\xf24a") |
||||
("stop" . "\xf04d") |
||||
("stop-circle" . "\xf28d") |
||||
("stop-circle-o" . "\xf28e") |
||||
("street-view" . "\xf21d") |
||||
("strikethrough" . "\xf0cc") |
||||
("stumbleupon" . "\xf1a4") |
||||
("stumbleupon-circle" . "\xf1a3") |
||||
("subscript" . "\xf12c") |
||||
("subway" . "\xf239") |
||||
("suitcase" . "\xf0f2") |
||||
("sun-o" . "\xf185") |
||||
("superscript" . "\xf12b") |
||||
("table" . "\xf0ce") |
||||
("tablet" . "\xf10a") |
||||
("tachometer" . "\xf0e4") |
||||
("tag" . "\xf02b") |
||||
("tags" . "\xf02c") |
||||
("tasks" . "\xf0ae") |
||||
("taxi" . "\xf1ba") |
||||
("television" . "\xf26c") |
||||
("tencent-weibo" . "\xf1d5") |
||||
("terminal" . "\xf120") |
||||
("text-height" . "\xf034") |
||||
("text-width" . "\xf035") |
||||
("th" . "\xf00a") |
||||
("th-large" . "\xf009") |
||||
("th-list" . "\xf00b") |
||||
("themeisle" . "\xf2b2") |
||||
("thumb-tack" . "\xf08d") |
||||
("thumbs-down" . "\xf165") |
||||
("thumbs-o-down" . "\xf088") |
||||
("thumbs-o-up" . "\xf087") |
||||
("thumbs-up" . "\xf164") |
||||
("ticket" . "\xf145") |
||||
("times" . "\xf00d") |
||||
("times-circle" . "\xf057") |
||||
("times-circle-o" . "\xf05c") |
||||
("tint" . "\xf043") |
||||
("toggle-off" . "\xf204") |
||||
("toggle-on" . "\xf205") |
||||
("trademark" . "\xf25c") |
||||
("train" . "\xf238") |
||||
("transgender" . "\xf224") |
||||
("transgender-alt" . "\xf225") |
||||
("trash" . "\xf1f8") |
||||
("trash-o" . "\xf014") |
||||
("tree" . "\xf1bb") |
||||
("trello" . "\xf181") |
||||
("tripadvisor" . "\xf262") |
||||
("trophy" . "\xf091") |
||||
("truck" . "\xf0d1") |
||||
("try" . "\xf195") |
||||
("tty" . "\xf1e4") |
||||
("tumblr" . "\xf173") |
||||
("tumblr-square" . "\xf174") |
||||
("twitch" . "\xf1e8") |
||||
("twitter" . "\xf099") |
||||
("twitter-square" . "\xf081") |
||||
("umbrella" . "\xf0e9") |
||||
("underline" . "\xf0cd") |
||||
("undo" . "\xf0e2") |
||||
("universal-access" . "\xf29a") |
||||
("university" . "\xf19c") |
||||
("unlock" . "\xf09c") |
||||
("unlock-alt" . "\xf13e") |
||||
("upload" . "\xf093") |
||||
("usb" . "\xf287") |
||||
("usd" . "\xf155") |
||||
("user" . "\xf007") |
||||
("user-md" . "\xf0f0") |
||||
("user-plus" . "\xf234") |
||||
("user-secret" . "\xf21b") |
||||
("user-times" . "\xf235") |
||||
("users" . "\xf0c0") |
||||
("venus" . "\xf221") |
||||
("venus-double" . "\xf226") |
||||
("venus-mars" . "\xf228") |
||||
("viacoin" . "\xf237") |
||||
("viadeo" . "\xf2a9") |
||||
("viadeo-square" . "\xf2aa") |
||||
("video-camera" . "\xf03d") |
||||
("vimeo" . "\xf27d") |
||||
("vimeo-square" . "\xf194") |
||||
("vine" . "\xf1ca") |
||||
("vk" . "\xf189") |
||||
("volume-control-phone" . "\xf2a0") |
||||
("volume-down" . "\xf027") |
||||
("volume-off" . "\xf026") |
||||
("volume-up" . "\xf028") |
||||
("weibo" . "\xf18a") |
||||
("weixin" . "\xf1d7") |
||||
("whatsapp" . "\xf232") |
||||
("wheelchair" . "\xf193") |
||||
("wheelchair-alt" . "\xf29b") |
||||
("wifi" . "\xf1eb") |
||||
("wikipedia-w" . "\xf266") |
||||
("windows" . "\xf17a") |
||||
("wordpress" . "\xf19a") |
||||
("wpbeginner" . "\xf297") |
||||
("wpforms" . "\xf298") |
||||
("wrench" . "\xf0ad") |
||||
("xing" . "\xf168") |
||||
("xing-square" . "\xf169") |
||||
("y-combinator" . "\xf23b") |
||||
("yahoo" . "\xf19e") |
||||
("yelp" . "\xf1e9") |
||||
("yoast" . "\xf2b1") |
||||
("youtube" . "\xf167") |
||||
("youtube-play" . "\xf16a") |
||||
("youtube-square" . "\xf166") |
||||
|
||||
)) |
||||
|
||||
(provide 'data-faicons) |
Binary file not shown.
@ -0,0 +1,491 @@
|
||||
(defvar all-the-icons-data/file-icon-alist |
||||
'( |
||||
|
||||
( "1c" . "\xa5ea" ) |
||||
( "1c-alt" . "\xea28" ) |
||||
( "MJML" . "\xea6f" ) |
||||
( "R" . "\xe905" ) |
||||
( "abap" . "\xe92b" ) |
||||
( "abif" . "\xea4e" ) |
||||
( "access" . "\xe9ea" ) |
||||
( "actionscript" . "\xe92e" ) |
||||
( "ada" . "\xe90b" ) |
||||
( "ae" . "\xe9f3" ) |
||||
( "ai" . "\xe6b4" ) |
||||
( "akka" . "\xea0e" ) |
||||
( "alex" . "\x29cb" ) |
||||
( "alloy" . "\xe935" ) |
||||
( "alpine-linux" . "\xe9ff" ) |
||||
( "ampl" . "\xe94e" ) |
||||
( "amx" . "\xe99b" ) |
||||
( "angelscript" . "\xea5b" ) |
||||
( "ansible" . "\x24b6" ) |
||||
( "ansible-alt" . "\x61" ) |
||||
( "ant" . "\xe93e" ) |
||||
( "antlr" . "\xe92c" ) |
||||
( "antwar" . "\x2591" ) |
||||
( "api-blueprint" . "\xe92d" ) |
||||
( "apl" . "\x234b" ) |
||||
( "apl-old" . "\xe909" ) |
||||
( "apple" . "\xe925" ) |
||||
( "appveyor" . "\xe923" ) |
||||
( "arc" . "\xe92f" ) |
||||
( "arch-linux" . "\x41" ) |
||||
( "arduino" . "\xe930" ) |
||||
( "arttext" . "\x24d0" ) |
||||
( "asciidoc" . "\xe918" ) |
||||
( "assembly" . "\xEB4F" ) |
||||
( "ats" . "\xe934" ) |
||||
( "audacity" . "\xe9f9" ) |
||||
( "augeas" . "\xe931" ) |
||||
( "aurelia" . "\xea48" ) |
||||
( "auto-hotkey" . "\xe932" ) |
||||
( "autoit" . "\xe933" ) |
||||
( "babel" . "\xe91f" ) |
||||
( "bazel" . "\xea5a" ) |
||||
( "bem" . "\xea59" ) |
||||
( "bib" . "\xe601" ) |
||||
( "bintray" . "\xea6e" ) |
||||
( "bithound" . "\xea2a" ) |
||||
( "blender" . "\xe9fa" ) |
||||
( "bluespec" . "\xe93c" ) |
||||
( "boo" . "\xe939" ) |
||||
( "brain" . "\xe93a" ) |
||||
( "brakeman" . "\xe9d6" ) |
||||
( "bro" . "\xe93b" ) |
||||
( "broccoli" . "\xe922" ) |
||||
( "brotli" . "\xea6c" ) |
||||
( "browserslist" . "\xea80" ) |
||||
( "brunch" . "\xea47" ) |
||||
( "buck" . "\xea46" ) |
||||
( "build-boot" . "\xf103" ) |
||||
( "bundler" . "\xea45" ) |
||||
( "byond" . "\xe962" ) |
||||
( "cabal" . "\xe9c2" ) |
||||
( "caddy" . "\xea58" ) |
||||
( "cake" . "\xe9e3" ) |
||||
( "cakefile" . "\xe924" ) |
||||
( "cakephp" . "\xea43" ) |
||||
( "cakephp-old" . "\xe9d3" ) |
||||
( "cc" . "\xe9d5" ) |
||||
( "ceylon" . "\xe94f" ) |
||||
( "chai" . "\x63" ) |
||||
( "chapel" . "\xe950" ) |
||||
( "chartjs" . "\xea0b" ) |
||||
( "chef" . "\xea42" ) |
||||
( "chuck" . "\xe943" ) |
||||
( "circle-ci" . "\xea12" ) |
||||
( "cirru" . "\xe951" ) |
||||
( "ckeditor" . "\xea0c" ) |
||||
( "clarion" . "\xe952" ) |
||||
( "clean" . "\xe95b" ) |
||||
( "click" . "\xe95c" ) |
||||
( "clips" . "\xe940" ) |
||||
( "clj" . "\xf105" ) |
||||
( "cljs" . "\xf104" ) |
||||
( "closure-template" . "\xea82" ) |
||||
( "cmake" . "\xe93f" ) |
||||
( "cobol" . "\xea44" ) |
||||
( "codecov" . "\x2602" ) |
||||
( "codekit" . "\xea41" ) |
||||
( "codemirror" . "\xea0d" ) |
||||
( "codeship" . "\xea6a" ) |
||||
( "cold-fusion" . "\xe929" ) |
||||
( "clisp" . "\xe972" ) |
||||
( "composer" . "\xe683" ) |
||||
( "config" . "\xf07c" ) |
||||
( "coq" . "\xe95f" ) |
||||
( "cordova" . "\xea11" ) |
||||
( "cp" . "\xe942" ) |
||||
( "cpan" . "\xea87" ) |
||||
( "creole" . "\xe95e" ) |
||||
( "crystal" . "\xe902" ) |
||||
( "cs-script" . "\xe9e2" ) |
||||
( "csound" . "\xe9f0" ) |
||||
( "cucumber" . "\xf02b" ) |
||||
( "cython" . "\xe963" ) |
||||
( "d3" . "\xea10" ) |
||||
( "darcs" . "\xe964" ) |
||||
( "dart" . "\xe698" ) |
||||
( "dashboard" . "\xf07d" ) |
||||
( "dbase" . "\xe9f1" ) |
||||
( "default" . "\x1f5cc" ) |
||||
( "delphi" . "\xea40" ) |
||||
( "devicetree" . "\xea57" ) |
||||
( "diff" . "\xe960" ) |
||||
( "dockerfile" . "\xf106" ) |
||||
( "doclets" . "\xea3f" ) |
||||
( "doge" . "\xe946" ) |
||||
( "dom" . "\xea71" ) |
||||
( "donejs" . "\x1f3c1" ) |
||||
( "doxygen" . "\xe928" ) |
||||
( "dragula" . "\x1f44c" ) |
||||
( "drone" . "\xea3d" ) |
||||
( "dyalog" . "\xe90c" ) |
||||
( "dylib" . "\xea15" ) |
||||
( "e" . "\x45" ) |
||||
( "eagle" . "\xe965" ) |
||||
( "easybuild" . "\xea85" ) |
||||