| 1 | ;; -*- mode: emacs-lisp -*- |
| 2 | ;; This file is loaded by Spacemacs at startup. |
| 3 | ;; It must be stored in your home directory. |
| 4 | |
| 5 | (defun dotspacemacs/layers () |
| 6 | "Configuration Layers declaration." |
| 7 | (setq-default |
| 8 | ;; List of additional paths where to look for configuration layers. |
| 9 | ;; Paths must have a trailing slash (ie. `~/.mycontribs/') |
| 10 | dotspacemacs-configuration-layer-path '() |
| 11 | ;; List of configuration layers to load. If it is the symbol `all' instead |
| 12 | ;; of a list then all discovered layers will be installed. |
| 13 | dotspacemacs-configuration-layers |
| 14 | '( |
| 15 | ;; ---------------------------------------------------------------- |
| 16 | ;; Example of useful layers you may want to use right away. |
| 17 | ;; Uncomment some layer names and press <SPC f e R> (Vim style) or |
| 18 | ;; <M-m f e R> (Emacs style) to install them. |
| 19 | ;; ---------------------------------------------------------------- |
| 20 | auto-completion |
| 21 | better-defaults |
| 22 | emacs-lisp |
| 23 | git |
| 24 | markdown |
| 25 | org |
| 26 | (shell :variables |
| 27 | shell-default-height 30 |
| 28 | shell-default-position 'bottom) |
| 29 | syntax-checking |
| 30 | mu4e |
| 31 | c-c++ |
| 32 | latex |
| 33 | ;; (haskell :variables '(haskell-enable-hindent-style "chris-done" |
| 34 | ;; haskell-enable-shm-support t)) |
| 35 | version-control |
| 36 | ) |
| 37 | ;; List of additional packages that will be installed wihout being |
| 38 | ;; wrapped in a layer. If you need some configuration for these |
| 39 | ;; packages then consider to create a layer, you can also put the |
| 40 | ;; configuration in `dotspacemacs/config'. |
| 41 | dotspacemacs-additional-packages '() |
| 42 | ;; A list of packages and/or extensions that will not be install and loaded. |
| 43 | dotspacemacs-excluded-packages '() |
| 44 | ;; If non-nil spacemacs will delete any orphan packages, i.e. packages that |
| 45 | ;; are declared in a layer which is not a member of |
| 46 | ;; the list `dotspacemacs-configuration-layers' |
| 47 | dotspacemacs-delete-orphan-packages t)) |
| 48 | |
| 49 | (defun dotspacemacs/init () |
| 50 | "Initialization function. |
| 51 | This function is called at the very startup of Spacemacs initialization |
| 52 | before layers configuration." |
| 53 | ;; This setq-default sexp is an exhaustive list of all the supported |
| 54 | ;; spacemacs settings. |
| 55 | (setq-default |
| 56 | ;; Either `vim' or `emacs'. Evil is always enabled but if the variable |
| 57 | ;; is `emacs' then the `holy-mode' is enabled at startup. |
| 58 | dotspacemacs-editing-style 'vim |
| 59 | ;; If non nil output loading progress in `*Messages*' buffer. |
| 60 | dotspacemacs-verbose-loading nil |
| 61 | ;; Specify the startup banner. Default value is `official', it displays |
| 62 | ;; the official spacemacs logo. An integer value is the index of text |
| 63 | ;; banner, `random' chooses a random text banner in `core/banners' |
| 64 | ;; directory. A string value must be a path to an image format supported |
| 65 | ;; by your Emacs build. |
| 66 | ;; If the value is nil then no banner is displayed. |
| 67 | dotspacemacs-startup-banner 'official |
| 68 | ;; List of items to show in the startup buffer. If nil it is disabled. |
| 69 | ;; Possible values are: `recents' `bookmarks' `projects'." |
| 70 | dotspacemacs-startup-lists '(recents projects) |
| 71 | ;; List of themes, the first of the list is loaded when spacemacs starts. |
| 72 | ;; Press <SPC> T n to cycle to the next theme in the list (works great |
| 73 | ;; with 2 themes variants, one dark and one light) |
| 74 | dotspacemacs-themes '(solarized-light |
| 75 | gotham |
| 76 | leuven |
| 77 | solarized-dark |
| 78 | spacemacs-light |
| 79 | spacemacs-dark |
| 80 | monokai |
| 81 | zenburn) |
| 82 | ;; If non nil the cursor color matches the state color. |
| 83 | dotspacemacs-colorize-cursor-according-to-state t |
| 84 | ;; Default font. `powerline-scale' allows to quickly tweak the mode-line |
| 85 | ;; size to make separators look not too crappy. |
| 86 | dotspacemacs-default-font '("Source Code Pro" |
| 87 | :size 13 |
| 88 | :weight normal |
| 89 | :width normal |
| 90 | :powerline-scale 1.1) |
| 91 | ;; The leader key |
| 92 | dotspacemacs-leader-key "SPC" |
| 93 | ;; The leader key accessible in `emacs state' and `insert state' |
| 94 | dotspacemacs-emacs-leader-key "M-m" |
| 95 | ;; Major mode leader key is a shortcut key which is the equivalent of |
| 96 | ;; pressing `<leader> m`. Set it to `nil` to disable it. |
| 97 | dotspacemacs-major-mode-leader-key "," |
| 98 | ;; Major mode leader key accessible in `emacs state' and `insert state' |
| 99 | dotspacemacs-major-mode-emacs-leader-key "C-M-m" |
| 100 | ;; The command key used for Evil commands (ex-commands) and |
| 101 | ;; Emacs commands (M-x). |
| 102 | ;; By default the command key is `:' so ex-commands are executed like in Vim |
| 103 | ;; with `:' and Emacs commands are executed with `<leader> :'. |
| 104 | dotspacemacs-command-key ":" |
| 105 | ;; Location where to auto-save files. Possible values are `original' to |
| 106 | ;; auto-save the file in-place, `cache' to auto-save the file to another |
| 107 | ;; file stored in the cache directory and `nil' to disable auto-saving. |
| 108 | ;; Default value is `cache'. |
| 109 | dotspacemacs-auto-save-file-location 'cache |
| 110 | ;; If non nil then `ido' replaces `helm' for some commands. For now only |
| 111 | ;; `find-files' (SPC f f) is replaced. |
| 112 | dotspacemacs-use-ido t |
| 113 | ;; If non nil the paste micro-state is enabled. When enabled pressing `p` |
| 114 | ;; several times cycle between the kill ring content. |
| 115 | dotspacemacs-enable-paste-micro-state nil |
| 116 | ;; Guide-key delay in seconds. The Guide-key is the popup buffer listing |
| 117 | ;; the commands bound to the current keystrokes. |
| 118 | dotspacemacs-guide-key-delay 0.4 |
| 119 | ;; If non nil a progress bar is displayed when spacemacs is loading. This |
| 120 | ;; may increase the boot time on some systems and emacs builds, set it to |
| 121 | ;; nil ;; to boost the loading time. |
| 122 | dotspacemacs-loading-progress-bar t |
| 123 | ;; If non nil the frame is fullscreen when Emacs starts up. |
| 124 | ;; (Emacs 24.4+ only) |
| 125 | dotspacemacs-fullscreen-at-startup nil |
| 126 | ;; If non nil `spacemacs/toggle-fullscreen' will not use native fullscreen. |
| 127 | ;; Use to disable fullscreen animations in OSX." |
| 128 | dotspacemacs-fullscreen-use-non-native nil |
| 129 | ;; If non nil the frame is maximized when Emacs starts up. |
| 130 | ;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil. |
| 131 | ;; (Emacs 24.4+ only) |
| 132 | dotspacemacs-maximized-at-startup nil |
| 133 | ;; A value from the range (0..100), in increasing opacity, which describes |
| 134 | ;; the transparency level of a frame when it's active or selected. |
| 135 | ;; Transparency can be toggled through `toggle-transparency'. |
| 136 | dotspacemacs-active-transparency 90 |
| 137 | ;; A value from the range (0..100), in increasing opacity, which describes |
| 138 | ;; the transparency level of a frame when it's inactive or deselected. |
| 139 | ;; Transparency can be toggled through `toggle-transparency'. |
| 140 | dotspacemacs-inactive-transparency 90 |
| 141 | ;; If non nil unicode symbols are displayed in the mode line. |
| 142 | dotspacemacs-mode-line-unicode-symbols t |
| 143 | ;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth |
| 144 | ;; scrolling overrides the default behavior of Emacs which recenters the |
| 145 | ;; point when it reaches the top or bottom of the screen. |
| 146 | dotspacemacs-smooth-scrolling t |
| 147 | ;; If non-nil smartparens-strict-mode will be enabled in programming modes. |
| 148 | dotspacemacs-smartparens-strict-mode nil |
| 149 | ;; Select a scope to highlight delimiters. Possible value is `all', |
| 150 | ;; `current' or `nil'. Default is `all' |
| 151 | dotspacemacs-highlight-delimiters 'all |
| 152 | ;; If non nil advises quit functions to keep server open when quitting. |
| 153 | dotspacemacs-persistent-server nil |
| 154 | ;; List of search tool executable names. Spacemacs uses the first installed |
| 155 | ;; tool of the list. Supported tools are `ag', `pt', `ack' and `grep'. |
| 156 | dotspacemacs-search-tools '("ag" "pt" "ack" "grep") |
| 157 | ;; The default package repository used if no explicit repository has been |
| 158 | ;; specified with an installed package. |
| 159 | ;; Not used for now. |
| 160 | dotspacemacs-default-package-repository nil |
| 161 | ;; Disable setting the cursor color according to states |
| 162 | dotspacemacs-colorize-cursor-according-to-state nil |
| 163 | ) |
| 164 | ;; User initialization goes here |
| 165 | ) |
| 166 | |
| 167 | (defun dotspacemacs/config () |
| 168 | "Configuration function. |
| 169 | This function is called at the very end of Spacemacs initialization after |
| 170 | layers configuration." |
| 171 | (setq powerline-default-separator nil) |
| 172 | (setq TeX-PDF-mode t |
| 173 | Tex-command-default 'TeX) |
| 174 | (setq undo-tree-auto-save-history t |
| 175 | undo-tree-history-directory-alist |
| 176 | `(("." . ,(concat spacemacs-cache-directory "undo")))) |
| 177 | (unless (file-exists-p (concat spacemacs-cache-directory "undo")) |
| 178 | (make-directory (concat spacemacs-cache-directory "undo"))) |
| 179 | |
| 180 | (setq TeX-view-program-selection |
| 181 | '(((output-dvi style-pstricks) |
| 182 | "dvips and gv") |
| 183 | (output-dvi "xdvi") |
| 184 | (output-pdf "zathura") |
| 185 | (output-html "xdg-open"))) |
| 186 | |
| 187 | (setq TeX-view-program-list |
| 188 | '(("zathura" |
| 189 | ("zathura" (mode-io-correlate "-sync.sh") |
| 190 | " " |
| 191 | (mode-io-correlate "%n:1:%t ") |
| 192 | "%o")))) |
| 193 | |
| 194 | (advice-add #'magit-key-mode-popup-committing :after |
| 195 | (lambda () |
| 196 | (magit-key-mode-toggle-option (quote committing) "--verbose"))) |
| 197 | |
| 198 | ;; Suppress ad-handle-definition warnings |
| 199 | ;; (annoying "`tramp-read-passwd' got redefined" warning on startup) |
| 200 | (setq ad-redefinition-action 'accept) |
| 201 | |
| 202 | (define-key evil-motion-state-map ";" 'evil-ex) |
| 203 | |
| 204 | ;; not very effective because of dotspacemacs-command-key |
| 205 | ;; (define-key evil-motion-state-map ":" 'evil-repeat-find-char) |
| 206 | |
| 207 | ;; enable when using zenburn |
| 208 | ;; (custom-set-faces '(evil-search-highlight-persist-highlight-face ((t (:background "#5F5F5F"))))) |
| 209 | ) |
| 210 | |
| 211 | ;; Do not write anything past this comment. This is where Emacs will |
| 212 | ;; auto-generate custom variable definitions. |
| 213 | (custom-set-variables |
| 214 | ;; custom-set-variables was added by Custom. |
| 215 | ;; If you edit it by hand, you could mess it up, so be careful. |
| 216 | ;; Your init file should contain only one such instance. |
| 217 | ;; If there is more than one, they won't work right. |
| 218 | '(ahs-case-fold-search nil) |
| 219 | '(ahs-default-range (quote ahs-range-whole-buffer)) |
| 220 | '(ahs-idle-interval 0.25) |
| 221 | '(ahs-idle-timer 0 t) |
| 222 | '(ahs-inhibit-face-list nil) |
| 223 | '(ansi-color-faces-vector |
| 224 | [default default default italic underline success warning error]) |
| 225 | '(ansi-color-names-vector |
| 226 | ["#272822" "#F92672" "#A6E22E" "#E6DB74" "#66D9EF" "#FD5FF0" "#A1EFE4" "#F8F8F2"]) |
| 227 | '(compilation-message-face (quote default)) |
| 228 | '(cua-global-mark-cursor-color "#2aa198") |
| 229 | '(cua-normal-cursor-color "#839496") |
| 230 | '(cua-overwrite-cursor-color "#b58900") |
| 231 | '(cua-read-only-cursor-color "#859900") |
| 232 | '(highlight-changes-colors ("#FD5FF0" "#AE81FF")) |
| 233 | '(highlight-symbol-colors |
| 234 | (--map |
| 235 | (solarized-color-blend it "#002b36" 0.25) |
| 236 | (quote |
| 237 | ("#b58900" "#2aa198" "#dc322f" "#6c71c4" "#859900" "#cb4b16" "#268bd2")))) |
| 238 | '(highlight-symbol-foreground-color "#93a1a1") |
| 239 | '(highlight-tail-colors |
| 240 | (quote |
| 241 | (("#49483E" . 0) |
| 242 | ("#67930F" . 20) |
| 243 | ("#349B8D" . 30) |
| 244 | ("#21889B" . 50) |
| 245 | ("#968B26" . 60) |
| 246 | ("#A45E0A" . 70) |
| 247 | ("#A41F99" . 85) |
| 248 | ("#49483E" . 100)))) |
| 249 | '(hl-bg-colors |
| 250 | (quote |
| 251 | ("#7B6000" "#8B2C02" "#990A1B" "#93115C" "#3F4D91" "#00629D" "#00736F" "#546E00"))) |
| 252 | '(hl-fg-colors |
| 253 | (quote |
| 254 | ("#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36"))) |
| 255 | '(magit-diff-use-overlays nil) |
| 256 | '(magit-use-overlays nil) |
| 257 | '(package-selected-packages |
| 258 | (quote |
| 259 | (company-auctex auctex company-c-headers cmake-mode clang-format toc-org smeargle shell-pop org-repo-todo org-present org-pomodoro org-bullets multi-term mmm-mode markdown-toc magit-svn magit-gitflow htmlize helm-gitignore helm-flyspell helm-c-yasnippet gitconfig-mode gitattributes-mode git-timemachine git-messenger flycheck-pos-tip evil-org company-statistics company-quickhelp auto-yasnippet ac-ispell auto-complete company flycheck yasnippet request gitignore-mode magit git-rebase-mode git-commit-mode markdown-mode alert log4e gntp zenburn-theme monokai-theme macrostep elisp-slime-nav diff-hl window-numbering volatile-highlights vi-tilde-fringe use-package smooth-scrolling rfringe rainbow-delimiters powerline popup pcre2el paradox page-break-lines open-junk-file neotree move-text linum-relative leuven-theme info+ indent-guide ido-vertical-mode hungry-delete hl-anything highlight-parentheses highlight-numbers highlight-indentation helm-themes helm-swoop helm-projectile helm-mode-manager helm-make helm-descbinds helm-ag guide-key-tip google-translate golden-ratio gh-md fringe-helper flx-ido fill-column-indicator fancy-battery expand-region exec-path-from-shell evil-visualstar evil-tutor evil-terminal-cursor-changer evil-surround evil-search-highlight-persist evil-numbers evil-nerd-commenter evil-matchit evil-lisp-state evil-jumper evil-indent-textobject evil-iedit-state evil-exchange evil-escape evil-args evil-anzu eval-sexp-fu clean-aindent-mode buffer-move auto-highlight-symbol auto-dictionary aggressive-indent adaptive-wrap ace-window ace-link ace-jump-mode))) |
| 260 | '(pos-tip-background-color "#073642") |
| 261 | '(pos-tip-foreground-color "#93a1a1") |
| 262 | '(ring-bell-function (quote ignore)) |
| 263 | '(smartrep-mode-line-active-bg (solarized-color-blend "#859900" "#073642" 0.2)) |
| 264 | '(term-default-bg-color "#002b36") |
| 265 | '(term-default-fg-color "#839496") |
| 266 | '(vc-annotate-background nil) |
| 267 | '(vc-annotate-color-map |
| 268 | (quote |
| 269 | ((20 . "#F92672") |
| 270 | (40 . "#CF4F1F") |
| 271 | (60 . "#C26C0F") |
| 272 | (80 . "#E6DB74") |
| 273 | (100 . "#AB8C00") |
| 274 | (120 . "#A18F00") |
| 275 | (140 . "#989200") |
| 276 | (160 . "#8E9500") |
| 277 | (180 . "#A6E22E") |
| 278 | (200 . "#729A1E") |
| 279 | (220 . "#609C3C") |
| 280 | (240 . "#4E9D5B") |
| 281 | (260 . "#3C9F79") |
| 282 | (280 . "#A1EFE4") |
| 283 | (300 . "#299BA6") |
| 284 | (320 . "#2896B5") |
| 285 | (340 . "#2790C3") |
| 286 | (360 . "#66D9EF")))) |
| 287 | '(vc-annotate-very-old-color nil) |
| 288 | '(weechat-color-list |
| 289 | (unspecified "#272822" "#49483E" "#A20C41" "#F92672" "#67930F" "#A6E22E" "#968B26" "#E6DB74" "#21889B" "#66D9EF" "#A41F99" "#FD5FF0" "#349B8D" "#A1EFE4" "#F8F8F2" "#F8F8F0"))) |
| 290 | (custom-set-faces |
| 291 | ;; custom-set-faces was added by Custom. |
| 292 | ;; If you edit it by hand, you could mess it up, so be careful. |
| 293 | ;; Your init file should contain only one such instance. |
| 294 | ;; If there is more than one, they won't work right. |
| 295 | '(company-tooltip-common ((t (:inherit company-tooltip :weight bold :underline nil)))) |
| 296 | '(company-tooltip-common-selection ((t (:inherit company-tooltip-selection :weight bold :underline nil))))) |