Created
October 20, 2017 11:07
-
-
Save omartell/78b56d005da89faf39b712bff5e6532b to your computer and use it in GitHub Desktop.
Spacemacs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(set-face-italic 'font-lock-comment-face nil) | |
(set-face-bold 'font-lock-comment-face nil) | |
(set-face-bold-p 'bold nil) | |
(defun osx/pre-init-exec-path-from-shell () | |
(use-package exec-path-from-shell | |
:init | |
(setq exec-path-from-shell-shell-name "/usr/local/bin/zsh"))) | |
(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. If it is the symbol `all' instead | |
;; of a list then all discovered layers will be installed. | |
dotspacemacs-configuration-layers | |
'( | |
go | |
elm | |
python | |
html | |
git | |
yaml | |
nginx | |
csv | |
sql | |
rust | |
markdown | |
javascript | |
auto-completion | |
better-defaults | |
emacs-lisp | |
clojure | |
(ruby :variables ruby-enable-enh-ruby-mode nil | |
ruby-test-runner 'rspec | |
ruby-version-manager 'rbenv) | |
ruby-on-rails | |
tmux | |
themes-megapack | |
osx | |
org | |
(shell :variables | |
shell-default-height 30 | |
shell-default-position 'bottom) | |
syntax-checking | |
) | |
;; 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 '(monokai-theme | |
lispy | |
flycheck-joker | |
nord-theme | |
cyberpunk-theme | |
atom-dark-theme | |
atom-one-dark-theme | |
color-theme-solarized | |
airline-themes | |
hemisu-theme | |
material-theme | |
noctilux-theme | |
color-theme-sanityinc-tomorrow | |
bliss-theme | |
helm-cider-history | |
haml-mode | |
fish-mode | |
yaml-mode | |
github-browse-file) | |
;; 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)) | |
(defun dotspacemacs/init () | |
"Initialization function. | |
This function is called at the very startup of Spacemacs initialization | |
before layers configuration. | |
You should not put any user code in there besides modifying the variable | |
values." | |
;; This setq-default sexp is an exhaustive list of all the supported | |
;; spacemacs settings. | |
(setq-default | |
;; 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) | |
dotspacemacs-editing-style 'vim | |
;; If non nil output loading progress in `*Messages*' buffer. (default nil) | |
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. | |
;; If the value is nil then no banner is displayed. (default 'official) | |
dotspacemacs-startup-banner 'official | |
;; List of items to show in the startup buffer. If nil it is disabled. | |
;; Possible values are: `recents' `bookmarks' `projects'. | |
;; (default '(recents projects)) | |
dotspacemacs-startup-lists '(recents projects) | |
;; 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 | |
;; Default major mode of the scratch buffer (default `text-mode') | |
dotspacemacs-scratch-mode 'text-mode | |
;; 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) | |
dotspacemacs-themes '(darkokai | |
atom-one-dark | |
atom-dark | |
nord | |
atom-one-dark | |
spacemacs-dark | |
spacemacs-light | |
solarized-dark | |
leuven | |
monokai | |
zenburn) | |
;; If non nil the cursor color matches the state color in GUI Emacs. | |
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 '("Fira Code Retina" | |
:size 15 | |
: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' | |
;; (default "M-m") | |
dotspacemacs-emacs-leader-key "M-m" | |
;; Major mode leader key is a shortcut key which is the equivalent of | |
;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",") | |
dotspacemacs-major-mode-leader-key "," | |
;; Major mode leader key accessible in `emacs state' and `insert state'. | |
;; (default "C-M-m) | |
dotspacemacs-major-mode-emacs-leader-key "C-M-m" | |
;; 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 | |
;; 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 ":" | |
;; 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 | |
;; 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. | |
;; (default 'cache) | |
dotspacemacs-auto-save-file-location 'cache | |
;; Maximum number of rollback slots to keep in the cache. (default 5) | |
dotspacemacs-max-rollback-slots 5 | |
;; If non nil then `ido' replaces `helm' for some commands. For now only | |
;; `find-files' (SPC f f), `find-spacemacs-file' (SPC f e s), and | |
;; `find-contrib-file' (SPC f e c) are replaced. (default nil) | |
dotspacemacs-use-ido nil | |
;; 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 t | |
;; define the position to display `helm', options are `bottom', `top', | |
;; `left', or `right'. (default 'bottom) | |
dotspacemacs-helm-position 'bottom | |
;; If non nil the paste micro-state is enabled. When enabled pressing `p` | |
;; several times cycle between the kill ring content. (default nil) | |
dotspacemacs-enable-paste-micro-state t | |
;; 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 | |
;; 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 | |
;; nil to boost the loading time. (default t) | |
dotspacemacs-loading-progress-bar t | |
;; If non nil the frame is fullscreen when Emacs starts up. (default nil) | |
;; (Emacs 24.4+ only) | |
dotspacemacs-fullscreen-at-startup nil | |
;; If non nil `spacemacs/toggle-fullscreen' will not use native fullscreen. | |
;; Use to disable fullscreen animations in OSX. (default nil) | |
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. | |
;; (default nil) (Emacs 24.4+ only) | |
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. | |
;; Transparency can be toggled through `toggle-transparency'. (default 90) | |
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. | |
;; Transparency can be toggled through `toggle-transparency'. (default 90) | |
dotspacemacs-inactive-transparency 90 | |
;; If non nil unicode symbols are displayed in the mode line. (default t) | |
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 | |
;; point when it reaches the top or bottom of the screen. (default t) | |
dotspacemacs-smooth-scrolling nil | |
;; 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 | |
;; If non-nil smartparens-strict-mode will be enabled in programming modes. | |
;; (default nil) | |
dotspacemacs-smartparens-strict-mode nil | |
;; 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) | |
dotspacemacs-highlight-delimiters 'all | |
;; If non nil advises quit functions to keep server open when quitting. | |
;; (default nil) | |
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'. | |
;; (default '("ag" "pt" "ack" "grep")) | |
dotspacemacs-search-tools '("ag" "pt" "ack" "grep") | |
;; The default package repository used if no explicit repository has been | |
;; specified with an installed package. | |
;; Not used for now. (default nil) | |
dotspacemacs-default-package-repository nil | |
dotspacemacs-configuration-layers '((osx :variables osx-use-option-as-meta nil)) | |
;; 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 'trailing)) | |
(defun dotspacemacs/user-init () | |
"Initialization function for user code. | |
It is called immediately after `dotspacemacs/init', before layer configuration | |
executes. | |
This function is mostly useful for variables that need to be set | |
before packages are loaded. If you are unsure, you should try in setting them in | |
`dotspacemacs/user-config' first." | |
;(require 'exec-path-from-shell) | |
;(exec-path-from-shell-setenv "SHELL" "/usr/local/bin/zsh") | |
;(exec-path-from-shell-initialize) | |
(when window-system | |
(mac-auto-operator-composition-mode) | |
(when (functionp 'set-fontset-font) | |
(set-fontset-font "fontset-default" | |
'unicode | |
(font-spec :family "Fira Code Retina" | |
:width 'normal | |
:size 17 | |
:weight 'normal)))) | |
) | |
(defun dotspacemacs/user-config () | |
"Configuration function for user code. | |
This function is called at the very end of Spacemacs initialization after | |
layers configuration. | |
This is the place where most of your configurations should be done. Unless it is | |
explicitly specified that a variable should be set before a package is loaded, | |
you should place your code chere." | |
() | |
(setq cider-cljs-lein-repl | |
"(do (require 'figwheel-sidecar.repl-api) | |
(figwheel-sidecar.repl-api/start-figwheel!) | |
(figwheel-sidecar.repl-api/cljs-repl))") | |
(evil-lisp-state-leader ", l") | |
(setq mode-require-final-newline 'visit-save) | |
;;(require 'airline-themes) | |
;;(load-theme 'airline-kalisi) | |
(setq require-final-newline t) | |
(setq create-lockfiles nil) | |
(setq tags-add-tables nil) | |
;; (require 'airline-themes) | |
;; (load-theme 'airline-dark) | |
;; (setq powerline-default-separator 'utf-8) | |
(setq mac-option-modifier 'meta) | |
(setq mac-command-modifier 'meta) | |
(setq powerline-default-separator 'arrow) | |
(spaceline-compile) | |
(sp-use-paredit-bindings) | |
(setq smooth-scrolling-mode -1) | |
(setq tool-bar-mode -1) | |
(global-unset-key (kbd "C-SPC")) | |
(setq cljr-favor-prefix-notation nil) | |
(setq cider-repl-prompt-abbreviated 1) | |
(setq cider-repl-use-pretty-printing 1) | |
(setq cider-repl-history-size 1000) | |
(setq cider-repl-history-file "./cider_history") | |
(set-variable 'frame-background-mode 'dark) | |
(set-frame-parameter nil 'background-mode 'dark) | |
(set-terminal-parameter nil 'background-mode 'dark) | |
(add-to-list 'default-frame-alist '(background-mode . dark)) | |
(setq show-paren-delay 0) | |
(setq show-paren-style 'mixed) | |
(set-face-background 'show-paren-match (face-background 'default)) | |
(set-face-foreground 'show-paren-match (face-foreground 'default)) | |
(set-face-attribute 'show-paren-match nil :weight 'extra-bold) | |
;;(osx-clipboard-mode +1) | |
(sp-use-paredit-bindings) | |
(smartparens-global-mode) | |
(use-package flycheck-joker) | |
(use-package clojure-mode | |
:init | |
(add-hook 'clojure-mode-hook (lambda () | |
(flycheck-mode 1)))) | |
(use-package ruby-mode | |
:init | |
(add-hook 'ruby-mode-hook (lambda () | |
(global-flycheck-mode -1))))) | |
;; Do not write anything past this comment. This is where Emacs will | |
;; auto-generate custom variable definitions. | |
(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. | |
'(ansi-color-faces-vector | |
[default bold shadow italic underline bold bold-italic bold]) | |
'(ansi-term-color-vector | |
[unspecified "black" "red" "green" "yellow" "blue" "brightmagenta" "cyan" "white"] t) | |
'(background-color "#202020") | |
'(background-mode dark) | |
'(blink-cursor-mode nil) | |
'(column-number-mode t) | |
'(compilation-message-face (quote default)) | |
'(cua-global-mark-cursor-color "#2aa198") | |
'(cua-normal-cursor-color "#657b83") | |
'(cua-overwrite-cursor-color "#b58900") | |
'(cua-read-only-cursor-color "#859900") | |
'(cursor-color "#cccccc") | |
'(custom-safe-themes | |
(quote | |
("d677ef584c6dfc0697901a44b885cc18e206f05114c8a3b7fde674fce6180879" "08b8807d23c290c840bbb14614a83878529359eaba1805618b3be7d61b0b0a32" "f782ed87369a7d568cee28d14922aa6d639f49dd676124d817dd82c8208985d0" "3b0a350918ee819dca209cec62d867678d7dac74f6195f5e3799aa206358a983" "7f5837a7dbf54c2b7c41d94f5eb1373cf63274847d1971037faa24d7f2231eea" "c7a9a68bd07e38620a5508fef62ec079d274475c8f92d75ed0c33c45fbe306bc" "412206319b30011cf38b45e63466f16473e8afee0854bebba3bab54a7d43ce74" "f04122bbc305a202967fa1838e20ff741455307c2ae80a26035fbf5d637e325f" "66132890ee1f884b4f8e901f0c61c5ed078809626a547dbefbb201f900d03fd8" "3d5ef3d7ed58c9ad321f05360ad8a6b24585b9c49abcee67bdcbb0fe583a6950" "b34636117b62837b3c0c149260dfebe12c5dad3d1177a758bb41c4b15259ed7e" "3693403316f0127326fa08067c2e3013eda29216829e1478e1656ea4fbbc6560" "06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" "fa2b58bb98b62c3b8cf3b6f02f058ef7827a8e497125de0254f56e373abee088" "4aee8551b53a43a883cb0b7f3255d6859d766b6c5e14bcb01bed572fcbef4328" "8aebf25556399b58091e533e455dd50a6a9cba958cc4ebb0aab175863c25b9a4" "38e64ea9b3a5e512ae9547063ee491c20bd717fe59d9c12219a0b1050b439cdd" "cf284fac2a56d242ace50b6d2c438fcc6b4090137f1631e32bedf19495124600" "946e871c780b159c4bb9f580537e5d2f7dba1411143194447604ecbaf01bd90c" "bbf759c7abc48267b9cb2dd5273eb08d968a45d9eb76abdd2959ef2cf98b3397" "3eb93cd9a0da0f3e86b5d932ac0e3b5f0f50de7a0b805d4eb1f67782e9eb67a4" "a800120841da457aa2f86b98fb9fd8df8ba682cebde033d7dbf8077c1b7d677a" "8f0334c430540bf45dbcbc06184a2e8cb01145f0ae1027ce6b1c40876144c0c9" "d9a0d14596e3d0bdb81f052fa9b99741dcd239af402d42e35f80822e05557cb2" "532769a638787d1196bc22c885e9b85269c3fc650fdecfc45135bb618127034c" "a0bbe4dc3513cbd049eb95f79c467b6f19dc42979fec27a0481bb6980bd8d405" "2a5be663818e1e23fd2175cc8dac8a2015dcde6b2e07536712451b14658bbf68" "e87a2bd5abc8448f8676365692e908b709b93f2d3869c42a4371223aab7d9cf8" "304c03c9cfcd368b4ab0832357788cd48513fe1bd89b9e531dd47886a83405a1" "878e22a7fe00ca4faba87b4f16bc269b8d2be5409d1c513bb7eda025da7c1cf4" "8c75217782ccea7e9f3ad2dae831487a5fb636d042263d0a0e0438d551da3224" "70340909b0f7e75b91e66a02aa3ad61f3106071a1a4e717d5cdabd8087b47ec4" "b869a1353d39ab81b19eb79de40ff3e7bb6eaad705e61f7e4dbdcb183f08c5a6" "b61c55259c639a54628f91452b060b99c550a1269eb947e372321b806b68f114" "86a731bda96ed5ed69980b4cbafe45614ec3c288da3b773e4585101e7ece40d2" "133222702a3c75d16ea9c50743f66b987a7209fb8b964f2c0938a816a83379a0" "8db4b03b9ae654d4a57804286eb3e332725c84d7cdab38463cb6b97d5762ad26" "7feeed063855b06836e0262f77f5c6d3f415159a98a9676d549bfeb6c49637c4" "98cc377af705c0f2133bb6d340bf0becd08944a588804ee655809da5d8140de6" "fbcdb6b7890d0ec1708fa21ab08eb0cc16a8b7611bb6517b722eba3891dfc9dd" "1b8d67b43ff1723960eb5e0cba512a2c7a2ad544ddb2533a90101fd1852b426e" "3ff96689086ebc06f5f813a804f7114195b7c703ed2f19b51e10026723711e33" "54ece5659cc7acdcd529dddd78675c2972a5ac69260af4a6aec517dcea16208b" "0788bfa0a0d0471984de6d367bb2358c49b25e393344d2a531e779b6cec260c5" "066d4710e40eeb85aa7c72afa6c23d09dee4795bf4e450d4869324e917b5f64d" "9ab634dcc9131f79016c96c4955298409649f6538908c743a8a9d2c6bc8321ef" "70403e220d6d7100bae7775b3334eddeb340ba9c37f4b39c189c2c29d458543b" "ea489f6710a3da0738e7dbdfc124df06a4e3ae82f191ce66c2af3e0a15e99b90" "d606ac41cdd7054841941455c0151c54f8bff7e4e050255dbd4ae4d60ab640c1" "aab598c4d024d544b4e8b356a95ca693afa9de000b154bd2f86eed68c9e75557" "beeb5ac6b65fcccfe434071d4624ff0308b5968bf2f0c01b567d212bcaf66054" "3038a172e5b633d0b1ee284e6520a73035d0cb52f28b1708e22b394577ad2df1" "bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "557c283f4f9d461f897b8cac5329f1f39fac785aa684b78949ff329c33f947ec" "e56ee322c8907feab796a1fb808ceadaab5caba5494a50ee83a13091d5b1a10c" "bc40f613df8e0d8f31c5eb3380b61f587e1b5bc439212e03d4ea44b26b4f408a" "a2e7b508533d46b701ad3b055e7c708323fb110b6676a8be458a758dd8f24e27" "9122dfb203945f6e84b0de66d11a97de6c9edf28b3b5db772472e4beccc6b3c5" "28ec8ccf6190f6a73812df9bc91df54ce1d6132f18b4c8fcc85d45298569eb53" "4f0f2f5ec60a4c6881ba36ffbfef31b2eea1c63aad9fe3a4a0e89452346de278" "a1289424bbc0e9f9877aa2c9a03c7dfd2835ea51d8781a0bf9e2415101f70a7e" "0c311fb22e6197daba9123f43da98f273d2bfaeeaeb653007ad1ee77f0003037" "71ecffba18621354a1be303687f33b84788e13f40141580fa81e7840752d31bf" "c567c85efdb584afa78a1e45a6ca475f5b55f642dfcd6277050043a568d1ac6f" default))) | |
'(evil-want-Y-yank-to-eol t) | |
'(fci-rule-color "#373b41" t) | |
'(foreground-color "#cccccc") | |
'(highlight-changes-colors (quote ("#FD5FF0" "#AE81FF"))) | |
'(highlight-symbol-colors | |
(--map | |
(solarized-color-blend it "#fdf6e3" 0.25) | |
(quote | |
("#b58900" "#2aa198" "#dc322f" "#6c71c4" "#859900" "#cb4b16" "#268bd2")))) | |
'(highlight-symbol-foreground-color "#586e75") | |
'(highlight-tail-colors | |
(quote | |
(("#49483E" . 0) | |
("#679A01" . 20) | |
("#4BBEAE" . 30) | |
("#1DB4D0" . 50) | |
("#9A8F21" . 60) | |
("#A75B00" . 70) | |
("#F309DF" . 85) | |
("#49483E" . 100)))) | |
'(hl-bg-colors | |
(quote | |
("#DEB542" "#F2804F" "#FF6E64" "#F771AC" "#9EA0E5" "#69B7F0" "#69CABF" "#B4C342"))) | |
'(hl-fg-colors | |
(quote | |
("#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3"))) | |
'(hl-sexp-background-color "#efebe9") | |
'(linum-format " %7i ") | |
'(magit-diff-use-overlays nil) | |
'(menu-bar-mode nil) | |
'(nrepl-message-colors | |
(quote | |
("#dc322f" "#cb4b16" "#b58900" "#546E00" "#B4C342" "#00629D" "#2aa198" "#d33682" "#6c71c4"))) | |
'(package-selected-packages | |
(quote | |
(flycheck-joker flycheck-elm lispy zoutline swiper ivy elm-mode projectile-rails feature-mode xterm-color shell-pop org-projectile org-category-capture org-present org-pomodoro alert log4e gntp org-download multi-term htmlize gnuplot git-gutter-fringe+ git-gutter-fringe fringe-helper git-gutter+ git-gutter flyspell-correct-helm flyspell-correct flycheck-rust flycheck-pos-tip pos-tip flycheck eshell-z eshell-prompt-extras esh-help diff-hl auto-dictionary enh-ruby-mode go-guru go-eldoc company-go go-mode nord-theme oceanic-theme jsx-mode winum unfill madhat2r-theme fuzzy dockerfile-mode docker atom-one-dark-theme yapfify pyvenv pytest pyenv-mode py-isort pip-requirements live-py-mode hy-mode helm-pydoc cython-mode company-anaconda anaconda-mode pythonic atom-dark-theme web-mode tagedit slim-mode scss-mode sass-mode pug-mode less-css-mode helm-css-scss emmet-mode company-web web-completion-data minitest hide-comnt autothemer nginx-mode yafolding csv-mode sql-indent toml-mode racer cargo rust-mode mmm-mode markdown-toc markdown-mode gh-md web-beautify livid-mode skewer-mode simple-httpd json-mode json-snatcher json-reformat js2-refactor js2-mode js-doc company-tern dash-functional tern coffee-mode zonokai-theme zenburn-theme zen-and-art-theme underwater-theme ujelly-theme twilight-theme twilight-bright-theme twilight-anti-bright-theme tronesque-theme toxi-theme tao-theme tangotango-theme tango-plus-theme tango-2-theme sunny-day-theme sublime-themes subatomic256-theme subatomic-theme stekene-theme spacegray-theme soothe-theme soft-stone-theme soft-morning-theme soft-charcoal-theme smyx-theme seti-theme reverse-theme railscasts-theme purple-haze-theme professional-theme planet-theme phoenix-dark-pink-theme phoenix-dark-mono-theme pastels-on-dark-theme organic-green-theme omtose-phellack-theme oldlace-theme occidental-theme obsidian-theme niflheim-theme naquadah-theme mustang-theme monochrome-theme molokai-theme moe-theme minimal-theme majapahit-theme lush-theme light-soap-theme jbeans-theme jazz-theme ir-black-theme inkpot-theme heroku-theme hc-zenburn-theme gruvbox-theme gruber-darker-theme grandshell-theme gotham-theme gandalf-theme flatui-theme flatland-theme firebelly-theme farmhouse-theme espresso-theme dracula-theme django-theme darkokai-theme darkmine-theme darkburn-theme dakrone-theme colorsarenice-theme clues-theme cherry-blossom-theme busybee-theme bubbleberry-theme birds-of-paradise-plus-theme badwolf-theme apropospriate-theme anti-zenburn-theme ample-zen-theme ample-theme alect-themes afternoon-theme color-theme-sanityinc-solarized darktooth-theme solarized-theme yaml-mode ws-butler window-numbering which-key volatile-highlights vi-tilde-fringe uuidgen use-package toc-org spaceline smeargle rvm ruby-tools ruby-test-mode rubocop rspec-mode robe reveal-in-osx-finder restart-emacs rbenv rake rainbow-delimiters popwin persp-mode pcre2el pbcopy paradox osx-trash osx-dictionary orgit org org-plus-contrib org-bullets open-junk-file noctilux-theme neotree mwim move-text monokai-theme material-theme magit-gitflow macrostep lorem-ipsum linum-relative link-hint launchctl info+ indent-guide ido-vertical-mode hungry-delete hl-todo highlight-parentheses highlight-numbers parent-mode highlight-indentation hemisu-theme help-fns+ helm-themes helm-swoop helm-projectile helm-mode-manager helm-make projectile helm-gitignore request helm-flx helm-descbinds helm-company helm-cider-history helm-c-yasnippet helm-ag haml-mode google-translate golden-ratio gitignore-mode github-browse-file gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link flx-ido flx fish-mode fill-column-indicator 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 magit magit-popup git-commit with-editor evil-lisp-state smartparens evil-indent-plus evil-iedit-state iedit evil-exchange evil-escape evil-ediff evil-args evil-anzu anzu evil goto-chg undo-tree elisp-slime-nav dumb-jump f diminish cyberpunk-theme company-statistics company column-enforce-mode color-theme-solarized color-theme color-theme-sanityinc-tomorrow clojure-snippets clj-refactor hydra inflections edn multiple-cursors paredit s peg clean-aindent-mode cider-eval-sexp-fu eval-sexp-fu highlight cider seq spinner queue pkg-info clojure-mode epl chruby bundler inf-ruby bliss-theme bind-map bind-key auto-yasnippet yasnippet auto-highlight-symbol auto-compile packed dash airline-themes powerline aggressive-indent adaptive-wrap ace-window ace-link ace-jump-helm-line helm avy helm-core async ac-ispell auto-complete popup quelpa package-build spacemacs-theme))) | |
'(pos-tip-background-color "#A6E22E") | |
'(pos-tip-foreground-color "#272822") | |
'(smartrep-mode-line-active-bg (solarized-color-blend "#859900" "#eee8d5" 0.2)) | |
'(term-default-bg-color "#fdf6e3") | |
'(term-default-fg-color "#657b83") | |
'(tool-bar-mode nil) | |
'(vc-annotate-background nil) | |
'(vc-annotate-background-mode nil) | |
'(vc-annotate-color-map | |
(quote | |
((20 . "#cc6666") | |
(40 . "#de935f") | |
(60 . "#f0c674") | |
(80 . "#b5bd68") | |
(100 . "#8abeb7") | |
(120 . "#81a2be") | |
(140 . "#b294bb") | |
(160 . "#cc6666") | |
(180 . "#de935f") | |
(200 . "#f0c674") | |
(220 . "#b5bd68") | |
(240 . "#8abeb7") | |
(260 . "#81a2be") | |
(280 . "#b294bb") | |
(300 . "#cc6666") | |
(320 . "#de935f") | |
(340 . "#f0c674") | |
(360 . "#b5bd68")))) | |
'(vc-annotate-very-old-color nil) | |
'(weechat-color-list | |
(unspecified "#272822" "#49483E" "#F70057" "#F92672" "#86C30D" "#A6E22E" "#BEB244" "#E6DB74" "#40CAE4" "#66D9EF" "#FB35EA" "#FD5FF0" "#74DBCD" "#A1EFE4" "#F8F8F2" "#F8F8F0")) | |
'(xterm-color-names | |
["#eee8d5" "#dc322f" "#859900" "#b58900" "#268bd2" "#d33682" "#2aa198" "#073642"]) | |
'(xterm-color-names-bright | |
["#fdf6e3" "#cb4b16" "#93a1a1" "#839496" "#657b83" "#6c71c4" "#586e75" "#002b36"])) | |
(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. | |
'(default ((t (:background nil))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment