[spacemacs] sync up with latest template
[~bandali/configs] / spacemacs / .spacemacs
CommitLineData
9d455f77 1;; -*- mode: emacs-lisp -*-
a41dc7e9
AB
2;; This file is loaded by Spacemacs at startup.
3;; It must be stored in your home directory.
4
8068706c
AB
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.
73b4f2fc
AB
13 dotspacemacs-configuration-layers
14 '(
9d455f77
AB
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 ;; ----------------------------------------------------------------
73b4f2fc
AB
20 auto-completion
21 better-defaults
9d455f77 22 emacs-lisp
3e1228d0 23 git
73b4f2fc
AB
24 markdown
25 org
3e1228d0
AB
26 (shell :variables
27 shell-default-height 30
28 shell-default-position 'bottom)
73b4f2fc
AB
29 syntax-checking
30 mu4e
73b4f2fc 31 c-c++
3e1228d0 32 latex
9d455f77
AB
33 ;; (haskell :variables '(haskell-enable-hindent-style "chris-done"
34 ;; haskell-enable-shm-support t))
3e1228d0 35 version-control
73b4f2fc 36 )
9d455f77
AB
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 '()
8068706c
AB
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))
a41dc7e9
AB
48
49(defun dotspacemacs/init ()
8068706c
AB
50 "Initialization function.
51This function is called at the very startup of Spacemacs initialization
52before layers configuration."
53 ;; This setq-default sexp is an exhaustive list of all the supported
54 ;; spacemacs settings.
55 (setq-default
73b4f2fc
AB
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
9d455f77 59 ;; If non nil output loading progress in `*Messages*' buffer.
73b4f2fc 60 dotspacemacs-verbose-loading nil
74f45a15
AB
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'
9d455f77
AB
64 ;; directory. A string value must be a path to an image format supported
65 ;; by your Emacs build.
74f45a15 66 ;; If the value is nil then no banner is displayed.
74f45a15 67 dotspacemacs-startup-banner 'official
73b4f2fc
AB
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)
8068706c
AB
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)
3e1228d0 74 dotspacemacs-themes '(solarized-light
9d455f77 75 gotham
3e1228d0 76 leuven
9d455f77
AB
77 solarized-dark
78 spacemacs-light
79 spacemacs-dark
80 monokai
81 zenburn)
8068706c
AB
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.
ecac7742 86 dotspacemacs-default-font '("Source Code Pro"
3e1228d0 87 :size 13
8068706c
AB
88 :weight normal
89 :width normal
90 :powerline-scale 1.1)
91 ;; The leader key
92 dotspacemacs-leader-key "SPC"
73b4f2fc
AB
93 ;; The leader key accessible in `emacs state' and `insert state'
94 dotspacemacs-emacs-leader-key "M-m"
8068706c 95 ;; Major mode leader key is a shortcut key which is the equivalent of
74f45a15 96 ;; pressing `<leader> m`. Set it to `nil` to disable it.
8068706c 97 dotspacemacs-major-mode-leader-key ","
73b4f2fc
AB
98 ;; Major mode leader key accessible in `emacs state' and `insert state'
99 dotspacemacs-major-mode-emacs-leader-key "C-M-m"
8068706c
AB
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 ":"
3e1228d0
AB
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
9d455f77
AB
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`
74f45a15 114 ;; several times cycle between the kill ring content.
9d455f77 115 dotspacemacs-enable-paste-micro-state nil
8068706c
AB
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
9d455f77
AB
149 ;; Select a scope to highlight delimiters. Possible value is `all',
150 ;; `current' or `nil'. Default is `all'
151 dotspacemacs-highlight-delimiters 'all
8068706c
AB
152 ;; If non nil advises quit functions to keep server open when quitting.
153 dotspacemacs-persistent-server nil
9d455f77
AB
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")
8068706c
AB
157 ;; The default package repository used if no explicit repository has been
158 ;; specified with an installed package.
159 ;; Not used for now.
5828c5c7
AB
160 dotspacemacs-default-package-repository nil
161 ;; Disable setting the cursor color according to states
73b4f2fc
AB
162 dotspacemacs-colorize-cursor-according-to-state nil
163 )
8068706c 164 ;; User initialization goes here
a41dc7e9
AB
165 )
166
167(defun dotspacemacs/config ()
8068706c
AB
168 "Configuration function.
169 This function is called at the very end of Spacemacs initialization after
170layers configuration."
5828c5c7
AB
171 (setq powerline-default-separator nil)
172 (setq TeX-PDF-mode t
173 Tex-command-default 'TeX)
47f44a8d
AB
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
0050153c
AB
180 (setq TeX-view-program-selection
181 '(((output-dvi style-pstricks)
73b4f2fc
AB
182 "dvips and gv")
183 (output-dvi "xdvi")
184 (output-pdf "zathura")
185 (output-html "xdg-open")))
0050153c
AB
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"))))
7375f958
AB
193
194 (advice-add #'magit-key-mode-popup-committing :after
195 (lambda ()
196 (magit-key-mode-toggle-option (quote committing) "--verbose")))
3e1228d0
AB
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")))))
a41dc7e9
AB
209)
210
8068706c 211;; Do not write anything past this comment. This is where Emacs will
a41dc7e9 212;; auto-generate custom variable definitions.
5828c5c7
AB
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.
5828c5c7
AB
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)
3e1228d0
AB
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")))
5828c5c7
AB
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.
3e1228d0
AB
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)))))