spacemacs-conf/.spacemacs

394 lines
21 KiB
Text
Raw Normal View History

2015-04-18 06:47:38 +00:00
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
2016-09-20 08:25:34 +00:00
2016-01-05 13:14:31 +00:00
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
;; `+distribution'. For now available distributions are `spacemacs-base'
;; or `spacemacs'. (default 'spacemacs)
dotspacemacs-distribution 'spacemacs
;; List of additional paths where to look for configuration layers.
;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
dotspacemacs-configuration-layer-path '()
;; List of configuration layers to load.
dotspacemacs-configuration-layers
2016-09-20 08:25:34 +00:00
'((auto-completion :variables
auto-completion-enable-help-tooltip t
auto-completion-enable-sort-by-usage t)
syntax-checking
;; intero
2016-01-05 13:14:31 +00:00
(git :variables
git-enable-github-support t)
2016-04-21 12:52:49 +00:00
github
2016-01-05 13:14:31 +00:00
deft
2016-09-29 18:46:00 +00:00
(org :variables org-enable-github-support)
2016-01-05 13:14:31 +00:00
clojure
2016-09-20 08:25:34 +00:00
slack
haskell
2016-03-22 13:21:03 +00:00
(shell :variables
shell-default-term-shell "/bin/zsh")
2016-09-20 08:25:34 +00:00
(colors :variables)
2016-01-05 13:14:31 +00:00
fasd
markdown
elm
emacs-lisp
2016-04-21 12:52:49 +00:00
version-control
2016-09-20 08:25:34 +00:00
themes-megapack
2016-09-20 19:57:55 +00:00
jabber
2016-04-21 12:52:49 +00:00
(wakatime :variables
wakatime-api-key wakatime-token
wakatime-cli-path "/usr/local/bin/wakatime"))
2016-01-05 13:14:31 +00:00
;; List of additional packages that will be installed without being
;; wrapped in a layer. If you need some configuration for these
;; packages, then consider creating a layer. You can also put the
;; configuration in `dotspacemacs/user-config'.
dotspacemacs-additional-packages '()
;; A list of packages and/or extensions that will not be install and loaded.
dotspacemacs-excluded-packages '()
;; If non-nil spacemacs will delete any orphan packages, i.e. packages that
;; are declared in a layer which is not a member of
;; the list `dotspacemacs-configuration-layers'. (default t)
dotspacemacs-delete-orphan-packages t))
2015-04-18 06:47:38 +00:00
(defun dotspacemacs/init ()
2015-09-07 20:15:50 +00:00
"Initialization function.
This function is called at the very startup of Spacemacs initialization
2016-01-05 13:14:31 +00:00
before layers configuration.
You should not put any user code in there besides modifying the variable
values."
2015-09-07 20:15:50 +00:00
;; This setq-default sexp is an exhaustive list of all the supported
;; spacemacs settings.
(setq-default
2016-01-05 13:14:31 +00:00
;; If non nil ELPA repositories are contacted via HTTPS whenever it's
;; possible. Set it to nil if you have no way to use HTTPS in your
;; environment, otherwise it is strongly recommended to let it set to t.
;; This variable has no effect if Emacs is launched with the parameter
;; `--insecure' which forces the value of this variable to nil.
;; (default t)
dotspacemacs-elpa-https t
;; Maximum allowed time in seconds to contact an ELPA repository.
dotspacemacs-elpa-timeout 5
;; If non nil then spacemacs will check for updates at startup
;; when the current branch is not `develop'. (default t)
dotspacemacs-check-for-update t
;; One of `vim', `emacs' or `hybrid'. Evil is always enabled but if the
;; variable is `emacs' then the `holy-mode' is enabled at startup. `hybrid'
;; uses emacs key bindings for vim's insert mode, but otherwise leaves evil
;; unchanged. (default 'vim)
2015-09-07 20:15:50 +00:00
dotspacemacs-editing-style 'vim
2016-01-05 13:14:31 +00:00
;; If non nil output loading progress in `*Messages*' buffer. (default nil)
2015-09-07 20:15:50 +00:00
dotspacemacs-verbose-loading nil
;; Specify the startup banner. Default value is `official', it displays
;; the official spacemacs logo. An integer value is the index of text
;; banner, `random' chooses a random text banner in `core/banners'
;; directory. A string value must be a path to an image format supported
;; by your Emacs build.
2016-01-05 13:14:31 +00:00
;; If the value is nil then no banner is displayed. (default 'official)
2015-09-07 20:15:50 +00:00
dotspacemacs-startup-banner 'official
;; List of items to show in the startup buffer. If nil it is disabled.
2016-01-05 13:14:31 +00:00
;; Possible values are: `recents' `bookmarks' `projects'.
;; (default '(recents projects))
2015-09-07 20:15:50 +00:00
dotspacemacs-startup-lists '(recents projects)
2016-01-05 13:14:31 +00:00
;; Number of recent files to show in the startup buffer. Ignored if
;; `dotspacemacs-startup-lists' doesn't include `recents'. (default 5)
dotspacemacs-startup-recent-list-size 5
2015-09-07 20:15:50 +00:00
;; List of themes, the first of the list is loaded when spacemacs starts.
;; Press <SPC> T n to cycle to the next theme in the list (works great
;; with 2 themes variants, one dark and one light)
2016-09-29 18:46:00 +00:00
dotspacemacs-themes '(solarized-dark
2016-09-20 19:57:55 +00:00
spacemacs-dark
2016-09-29 18:46:00 +00:00
sanityinc-solarized-dark
sanityinc-tomorrow-eighties
2016-01-05 13:14:31 +00:00
zenburn
solarized-light
2016-09-20 08:25:34 +00:00
spacemacs-light)
2016-01-05 13:14:31 +00:00
;; If non nil the cursor color matches the state color in GUI Emacs.
2015-09-07 20:15:50 +00:00
dotspacemacs-colorize-cursor-according-to-state t
;; Default font. `powerline-scale' allows to quickly tweak the mode-line
;; size to make separators look not too crappy.
dotspacemacs-default-font '("Menlo"
2016-04-21 13:22:29 +00:00
:size 12
2015-09-07 20:15:50 +00:00
:weight normal
:width normal
:powerline-scale 1.1)
;; The leader key
dotspacemacs-leader-key "SPC"
;; The leader key accessible in `emacs state' and `insert state'
2016-01-05 13:14:31 +00:00
;; (default "M-m")
2015-09-07 20:15:50 +00:00
dotspacemacs-emacs-leader-key "M-m"
;; Major mode leader key is a shortcut key which is the equivalent of
2016-01-05 13:14:31 +00:00
;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",")
2015-09-07 20:15:50 +00:00
dotspacemacs-major-mode-leader-key ","
2016-01-05 13:14:31 +00:00
;; Major mode leader key accessible in `emacs state' and `insert state'.
;; (default "C-M-m)
2015-09-07 20:15:50 +00:00
dotspacemacs-major-mode-emacs-leader-key "C-M-m"
2016-01-05 13:14:31 +00:00
;; These variables control whether separate commands are bound in the GUI to
;; the key pairs C-i, TAB and C-m, RET.
;; Setting it to a non-nil value, allows for separate commands under <C-i>
;; and TAB or <C-m> and RET.
;; In the terminal, these pairs are generally indistinguishable, so this only
;; works in the GUI. (default nil)
dotspacemacs-distinguish-gui-tab nil
;; (Not implemented) dotspacemacs-distinguish-gui-ret nil
2015-09-07 20:15:50 +00:00
;; The command key used for Evil commands (ex-commands) and
;; Emacs commands (M-x).
;; By default the command key is `:' so ex-commands are executed like in Vim
;; with `:' and Emacs commands are executed with `<leader> :'.
dotspacemacs-command-key ":"
2016-01-05 13:14:31 +00:00
;; If non nil `Y' is remapped to `y$'. (default t)
dotspacemacs-remap-Y-to-y$ t
;; Name of the default layout (default "Default")
dotspacemacs-default-layout-name "Default"
;; If non nil the default layout name is displayed in the mode-line.
;; (default nil)
dotspacemacs-display-default-layout nil
;; If non nil then the last auto saved layouts are resume automatically upon
;; start. (default nil)
dotspacemacs-auto-resume-layouts nil
2015-09-07 20:15:50 +00:00
;; Location where to auto-save files. Possible values are `original' to
;; auto-save the file in-place, `cache' to auto-save the file to another
;; file stored in the cache directory and `nil' to disable auto-saving.
2016-01-05 13:14:31 +00:00
;; (default 'cache)
2015-09-07 20:15:50 +00:00
dotspacemacs-auto-save-file-location 'cache
2016-01-05 13:14:31 +00:00
;; Maximum number of rollback slots to keep in the cache. (default 5)
dotspacemacs-max-rollback-slots 5
2015-09-07 20:15:50 +00:00
;; If non nil then `ido' replaces `helm' for some commands. For now only
2016-01-05 13:14:31 +00:00
;; `find-files' (SPC f f), `find-spacemacs-file' (SPC f e s), and
;; `find-contrib-file' (SPC f e c) are replaced. (default nil)
2015-09-07 20:15:50 +00:00
dotspacemacs-use-ido nil
2016-01-05 13:14:31 +00:00
;; If non nil, `helm' will try to minimize the space it uses. (default nil)
dotspacemacs-helm-resize nil
;; if non nil, the helm header is hidden when there is only one source.
;; (default nil)
dotspacemacs-helm-no-header nil
;; define the position to display `helm', options are `bottom', `top',
;; `left', or `right'. (default 'bottom)
dotspacemacs-helm-position 'bottom
2015-09-07 20:15:50 +00:00
;; If non nil the paste micro-state is enabled. When enabled pressing `p`
2016-01-05 13:14:31 +00:00
;; several times cycle between the kill ring content. (default nil)
2015-09-07 20:15:50 +00:00
dotspacemacs-enable-paste-micro-state nil
2016-01-05 13:14:31 +00:00
;; Which-key delay in seconds. The which-key buffer is the popup listing
;; the commands bound to the current keystroke sequence. (default 0.4)
dotspacemacs-which-key-delay 0.4
;; Which-key frame position. Possible values are `right', `bottom' and
;; `right-then-bottom'. right-then-bottom tries to display the frame to the
;; right; if there is insufficient space it displays it at the bottom.
;; (default 'bottom)
dotspacemacs-which-key-position 'bottom
2015-09-07 20:15:50 +00:00
;; If non nil a progress bar is displayed when spacemacs is loading. This
;; may increase the boot time on some systems and emacs builds, set it to
2016-01-05 13:14:31 +00:00
;; nil to boost the loading time. (default t)
2015-09-07 20:15:50 +00:00
dotspacemacs-loading-progress-bar t
2016-01-05 13:14:31 +00:00
;; If non nil the frame is fullscreen when Emacs starts up. (default nil)
2015-09-07 20:15:50 +00:00
;; (Emacs 24.4+ only)
dotspacemacs-fullscreen-at-startup nil
;; If non nil `spacemacs/toggle-fullscreen' will not use native fullscreen.
2016-01-05 13:14:31 +00:00
;; Use to disable fullscreen animations in OSX. (default nil)
2015-09-07 20:15:50 +00:00
dotspacemacs-fullscreen-use-non-native nil
;; If non nil the frame is maximized when Emacs starts up.
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
2016-01-05 13:14:31 +00:00
;; (default nil) (Emacs 24.4+ only)
2015-09-07 20:15:50 +00:00
dotspacemacs-maximized-at-startup nil
;; A value from the range (0..100), in increasing opacity, which describes
;; the transparency level of a frame when it's active or selected.
2016-01-05 13:14:31 +00:00
;; Transparency can be toggled through `toggle-transparency'. (default 90)
2015-09-07 20:15:50 +00:00
dotspacemacs-active-transparency 90
;; A value from the range (0..100), in increasing opacity, which describes
;; the transparency level of a frame when it's inactive or deselected.
2016-01-05 13:14:31 +00:00
;; Transparency can be toggled through `toggle-transparency'. (default 90)
2015-09-07 20:15:50 +00:00
dotspacemacs-inactive-transparency 90
2016-01-05 13:14:31 +00:00
;; If non nil unicode symbols are displayed in the mode line. (default t)
2015-09-07 20:15:50 +00:00
dotspacemacs-mode-line-unicode-symbols t
;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth
;; scrolling overrides the default behavior of Emacs which recenters the
2016-01-05 13:14:31 +00:00
;; point when it reaches the top or bottom of the screen. (default t)
2015-09-07 20:15:50 +00:00
dotspacemacs-smooth-scrolling t
2016-01-05 13:14:31 +00:00
;; If non nil line numbers are turned on in all `prog-mode' and `text-mode'
;; derivatives. If set to `relative', also turns on relative line numbers.
;; (default nil)
dotspacemacs-line-numbers nil
2015-09-07 20:15:50 +00:00
;; If non-nil smartparens-strict-mode will be enabled in programming modes.
2016-01-05 13:14:31 +00:00
;; (default nil)
2015-09-07 20:15:50 +00:00
dotspacemacs-smartparens-strict-mode nil
2016-01-05 13:14:31 +00:00
;; Select a scope to highlight delimiters. Possible values are `any',
;; `current', `all' or `nil'. Default is `all' (highlight any scope and
;; emphasis the current one). (default 'all)
2015-09-07 20:15:50 +00:00
dotspacemacs-highlight-delimiters 'all
;; If non nil advises quit functions to keep server open when quitting.
2016-01-05 13:14:31 +00:00
;; (default nil)
2015-09-07 20:15:50 +00:00
dotspacemacs-persistent-server nil
;; List of search tool executable names. Spacemacs uses the first installed
;; tool of the list. Supported tools are `ag', `pt', `ack' and `grep'.
2016-01-05 13:14:31 +00:00
;; (default '("ag" "pt" "ack" "grep"))
2015-09-07 20:15:50 +00:00
dotspacemacs-search-tools '("ag" "pt" "ack" "grep")
;; The default package repository used if no explicit repository has been
;; specified with an installed package.
2016-01-05 13:14:31 +00:00
;; Not used for now. (default nil)
2015-09-07 20:15:50 +00:00
dotspacemacs-default-package-repository nil
2016-01-05 13:14:31 +00:00
;; Delete whitespace while saving buffer. Possible values are `all'
;; to aggressively delete empty line and long sequences of whitespace,
;; `trailing' to delete only the whitespace at end of lines, `changed'to
;; delete only whitespace for changed lines or `nil' to disable cleanup.
;; (default nil)
dotspacemacs-whitespace-cleanup nil))
(defun dotspacemacs/user-init ()
"Initialization function for user code.
It is called immediately after `dotspacemacs/init'. You are free to put almost
any user code here. The exception is org related code, which should be placed
in `dotspacemacs/user-config'."
2016-09-29 18:46:00 +00:00
;; Needed for Emacs GUI to find gpg
(add-to-list 'exec-path "/usr/local/bin")
;; My secrets password encrypted with GPG with my public key
(load "~/.spacemacs-secrets.el.gpg")
2016-09-20 19:57:55 +00:00
(setq ssl-program-name "gnutls-cli"
ssl-program-arguments '("--insecure" "-p" service host)
ssl-certificate-verification-policy 1))
2015-04-18 06:47:38 +00:00
2015-09-07 20:15:50 +00:00
;; -- Y
2015-04-18 14:53:00 +00:00
(defun find-file-in-split ()
"Split the windows and start projectile find file"
(interactive)
(split-window-below-and-focus)
(projectile-find-file))
2016-09-20 19:57:55 +00:00
(defvar hipchat-room-list '(("integration" . "1_integration")))
(defvar hipchat-number "")
(defvar hipchat-nickname "Yann Esposito")
(defun hipchat-join ()
(interactive)
(let* ((room-list (sort (mapcar 'car hipchat-room-list) 'string-lessp))
(selected-room (completing-read "Room name: " room-list))
(hipchat-mapping (cdr (assoc selected-room hipchat-room-list))))
(jabber-groupchat-join
(jabber-read-account)
(concat hipchat-number "" hipchat-mapping "@conf.btf.hipchat.com")
hipchat-nickname
t)))
2016-01-05 13:14:31 +00:00
(defun dotspacemacs/user-config ()
"Configuration function for user code.
This function is called at the very end of Spacemacs initialization after
layers configuration. You are free to put any user code."
2015-04-18 06:47:38 +00:00
(global-set-key (kbd "C-j") 'evil-window-down)
(global-set-key (kbd "C-k") 'evil-window-up)
(global-set-key (kbd "C-l") 'evil-window-right)
(global-set-key (kbd "C-h") 'evil-window-left)
2015-04-18 14:53:00 +00:00
(evil-leader/set-key "oo" 'find-file-in-split)
2016-04-21 13:22:29 +00:00
(setq fci-rule-width 1)
(setq fci-rule-color "#073642")
(spacemacs/add-to-hooks 'spacemacs/toggle-fill-column-indicator-on
'(prog-mode-hook))
(spacemacs/add-to-hooks 'spacemacs/toggle-highlight-indentation-current-column-on
'(prog-mode-hook))
(spacemacs/add-to-hooks 'abbrev-mode
'(text-mode-hook))
2015-10-17 18:11:51 +00:00
(setq mac-option-modifier 'none)
(setq mac-command-modifier 'meta)
2016-09-29 18:46:00 +00:00
;; Clojure
(evil-leader/set-key "op" 'cider-pprint-eval-last-sexp)
2016-04-21 13:22:29 +00:00
;; Wakatime
(global-wakatime-mode t)
2016-09-20 19:57:55 +00:00
;; Slack
2016-09-20 08:25:34 +00:00
(slack-register-team :name "Batiatus"
:default t
:client-id slack-client-id
:client-secret slack-client-secret
2016-09-20 19:57:55 +00:00
:token slack-token)
(spacemacs/set-leader-keys
"aCg" 'slack-group-select)
(evil-leader/set-key "oh" 'hipchat-join))
2015-04-18 06:47:38 +00:00
;; Do not write anything in this section. This is where Emacs will
;; auto-generate custom variable definitions.
2015-09-07 20:15:50 +00:00
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
2016-04-21 13:22:29 +00:00
'(compilation-message-face (quote default))
'(cua-global-mark-cursor-color "#2aa198")
'(cua-normal-cursor-color "#839496")
'(cua-overwrite-cursor-color "#b58900")
'(cua-read-only-cursor-color "#859900")
2016-03-22 13:21:03 +00:00
'(custom-safe-themes
(quote
2016-09-29 18:46:00 +00:00
("8aebf25556399b58091e533e455dd50a6a9cba958cc4ebb0aab175863c25b9a4" default)))
'(evil-want-Y-yank-to-eol t)
2016-09-20 08:25:34 +00:00
'(fci-rule-color "#073642")
2016-04-21 13:22:29 +00:00
'(highlight-changes-colors (quote ("#d33682" "#6c71c4")))
'(highlight-symbol-colors
(--map
(solarized-color-blend it "#002b36" 0.25)
(quote
("#b58900" "#2aa198" "#dc322f" "#6c71c4" "#859900" "#cb4b16" "#268bd2"))))
'(highlight-symbol-foreground-color "#93a1a1")
'(highlight-tail-colors
(quote
(("#073642" . 0)
("#546E00" . 20)
("#00736F" . 30)
("#00629D" . 50)
("#7B6000" . 60)
("#8B2C02" . 70)
("#93115C" . 85)
("#073642" . 100))))
'(hl-bg-colors
(quote
("#7B6000" "#8B2C02" "#990A1B" "#93115C" "#3F4D91" "#00629D" "#00736F" "#546E00")))
'(hl-fg-colors
(quote
("#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36")))
'(magit-diff-use-overlays nil)
'(nrepl-message-colors
(quote
("#dc322f" "#cb4b16" "#b58900" "#546E00" "#B4C342" "#00629D" "#2aa198" "#d33682" "#6c71c4")))
2016-09-29 18:46:00 +00:00
'(package-selected-packages
(quote
(define-word zonokai-theme zenburn-theme zen-and-art-theme xterm-color ws-butler window-numbering which-key wakatime-mode volatile-highlights vi-tilde-fringe uuidgen use-package underwater-theme ujelly-theme twilight-theme twilight-bright-theme twilight-anti-bright-theme tronesque-theme toxi-theme toc-org tao-theme tangotango-theme tango-plus-theme tango-2-theme sunny-day-theme sublime-themes subatomic256-theme subatomic-theme stekene-theme spacemacs-theme spaceline spacegray-theme soothe-theme solarized-theme soft-stone-theme soft-morning-theme soft-charcoal-theme smyx-theme smeargle slack shell-pop seti-theme reverse-theme reveal-in-osx-finder restart-emacs rainbow-mode rainbow-identifiers rainbow-delimiters railscasts-theme quelpa purple-haze-theme professional-theme popwin planet-theme phoenix-dark-pink-theme phoenix-dark-mono-theme persp-mode pcre2el pbcopy pastels-on-dark-theme paradox osx-trash osx-dictionary orgit organic-green-theme org-projectile org-present org-pomodoro org-plus-contrib org-download org-bullets open-junk-file omtose-phellack-theme oldlace-theme occidental-theme obsidian-theme noctilux-theme niflheim-theme neotree naquadah-theme mustang-theme multi-term move-text monokai-theme monochrome-theme molokai-theme moe-theme mmm-mode minimal-theme material-theme markdown-toc majapahit-theme magit-gitflow magit-gh-pulls macrostep lush-theme lorem-ipsum linum-relative link-hint light-soap-theme launchctl jbeans-theme jazz-theme jabber ir-black-theme intero inkpot-theme info+ indent-guide ido-vertical-mode hungry-delete htmlize hlint-refactor hl-todo hindent highlight-parentheses highlight-numbers highlight-indentation heroku-theme hemisu-theme help-fns+ helm-themes helm-swoop helm-projectile helm-mode-manager helm-make helm-hoogle helm-gitignore helm-flx helm-descbinds helm-company helm-c-yasnippet helm-ag hc-zenburn-theme haskell-snippets gruvbox-theme gruber-darker-theme grandshell-theme gotham-theme google-translate golden-ratio gnuplot github-search github-clone github-browse-file gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link git-gutter-fringe git-gutter-fringe+ gist gh-md gandalf-theme flycheck-pos-tip flycheck-haskell flycheck-elm flx-ido flatui-theme flatland-theme firebelly-theme fill-column-indicator fasd farmhouse-theme fancy-battery eyebrowse expand-region exec-path-from-shell evil-visualstar evil-visual-mark-mode evil-unimpaired evil-tutor evil-surround evil-search-highlight-persist evil-numbers evil-nerd-commenter evil-mc evil-matchit evil-magit evil-lisp-state evil-indent-plus evil-iedit-state evil-exchange evil-escape evil-ediff evil-args evil-anzu espresso-theme eshell-z eshell-prompt-extras esh-help elm-mode elisp-slime-nav dumb-jump dracula-theme django-theme diff-hl deft darktooth-theme darkokai-theme darkmine-theme darkburn-theme dakrone-theme cyberpunk-theme company-statistics company-quickhelp company-ghci company-ghc company-cabal column-enforce-mode colorsarenice-theme color-theme-sanityinc-tomorrow color-theme-sanityinc-solarized color-identifiers-mode cmm-mode clues-theme clojure-snippets clj-refactor clean-aindent-mode cider-eval-sexp-fu cherry-blossom-theme busybee-theme bubbleberry-theme birds-of-paradise-plus-theme badwolf-theme auto-yasnippet auto-highlight-symbol auto-compile apropospriate-theme anti-zenburn-theme ample-zen-theme ample-theme alect-themes aggressive-indent afternoon-theme adaptive-wrap ace-window ace-link ace-jump-helm-line ac-ispell)))
2016-04-21 13:22:29 +00:00
'(pos-tip-background-color "#073642")
'(pos-tip-foreground-color "#93a1a1")
'(smartrep-mode-line-active-bg (solarized-color-blend "#859900" "#073642" 0.2))
'(term-default-bg-color "#002b36")
'(term-default-fg-color "#839496")
'(vc-annotate-background nil)
'(vc-annotate-color-map
(quote
((20 . "#dc322f")
(40 . "#c85d17")
(60 . "#be730b")
(80 . "#b58900")
(100 . "#a58e00")
(120 . "#9d9100")
(140 . "#959300")
(160 . "#8d9600")
(180 . "#859900")
(200 . "#669b32")
(220 . "#579d4c")
(240 . "#489e65")
(260 . "#399f7e")
(280 . "#2aa198")
(300 . "#2898af")
(320 . "#2793ba")
(340 . "#268fc6")
(360 . "#268bd2"))))
'(vc-annotate-very-old-color nil)
'(weechat-color-list
(quote
(unspecified "#002b36" "#073642" "#990A1B" "#dc322f" "#546E00" "#859900" "#7B6000" "#b58900" "#00629D" "#268bd2" "#93115C" "#d33682" "#00736F" "#2aa198" "#839496" "#657b83")))
'(xterm-color-names
["#073642" "#dc322f" "#859900" "#b58900" "#268bd2" "#d33682" "#2aa198" "#eee8d5"])
'(xterm-color-names-bright
["#002b36" "#cb4b16" "#586e75" "#657b83" "#839496" "#6c71c4" "#93a1a1" "#fdf6e3"]))
2015-09-07 20:15:50 +00:00
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
2016-09-29 18:46:00 +00:00
)