Guest User

Untitled

a guest
May 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.15 KB | None | 0 0
  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. You should not put any user code in this function besides modifying the variable
  8. values."
  9. (setq-default
  10. ;; Base distribution to use. This is a layer contained in the directory
  11. ;; `+distribution'. For now available distributions are `spacemacs-base'
  12. ;; or `spacemacs'. (default 'spacemacs)
  13. dotspacemacs-distribution 'spacemacs
  14. ;; Lazy installation of layers (i.e. layers are installed only when a file
  15. ;; with a supported type is opened). Possible values are `all', `unused'
  16. ;; and `nil'. `unused' will lazy install only unused layers (i.e. layers
  17. ;; not listed in variable `dotspacemacs-configuration-layers'), `all' will
  18. ;; lazy install any layer that support lazy installation even the layers
  19. ;; listed in `dotspacemacs-configuration-layers'. `nil' disable the lazy
  20. ;; installation feature and you have to explicitly list a layer in the
  21. ;; variable `dotspacemacs-configuration-layers' to install it.
  22. ;; (default 'unused)
  23. dotspacemacs-enable-lazy-installation 'unused
  24. ;; If non-nil then Spacemacs will ask for confirmation before installing
  25. ;; a layer lazily. (default t)
  26. dotspacemacs-ask-for-lazy-installation t
  27. ;; If non-nil layers with lazy install support are lazy installed.
  28. ;; List of additional paths where to look for configuration layers.
  29. ;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
  30. dotspacemacs-configuration-layer-path '()
  31. ;; List of configuration layers to load.
  32. dotspacemacs-configuration-layers
  33. '(
  34. html
  35. ;; ----------------------------------------------------------------
  36. ;; Example of useful layers you may want to use right away.
  37. ;; Uncomment some layer names and press <SPC f e R> (Vim style) or
  38. ;; <M-m f e R> (Emacs style) to install them.
  39. ;; ----------------------------------------------------------------
  40. helm
  41. auto-completion
  42. better-defaults
  43. emacs-lisp
  44. git
  45. markdown
  46. org
  47. (shell :variables
  48. shell-default-height 30
  49. shell-default-position 'bottom)
  50. spell-checking
  51. syntax-checking
  52. version-control
  53. osx
  54. journal
  55. )
  56. ;; List of additional packages that will be installed without being
  57. ;; wrapped in a layer. If you need some configuration for these
  58. ;; packages, then consider creating a layer. You can also put the
  59. ;; configuration in `dotspacemacs/user-config'.
  60. dotspacemacs-additional-packages '()
  61. ;; A list of packages that cannot be updated.
  62. dotspacemacs-frozen-packages '()
  63. ;; A list of packages that will not be installed and loaded.
  64. dotspacemacs-excluded-packages '()
  65. ;; Defines the behaviour of Spacemacs when installing packages.
  66. ;; Possible values are `used-only', `used-but-keep-unused' and `all'.
  67. ;; `used-only' installs only explicitly used packages and uninstall any
  68. ;; unused packages as well as their unused dependencies.
  69. ;; `used-but-keep-unused' installs only the used packages but won't uninstall
  70. ;; them if they become unused. `all' installs *all* packages supported by
  71. ;; Spacemacs and never uninstall them. (default is `used-only')
  72. dotspacemacs-install-packages 'used-only))
  73.  
  74. (defun dotspacemacs/init ()
  75. "Initialization function.
  76. This function is called at the very startup of Spacemacs initialization
  77. before layers configuration.
  78. You should not put any user code in there besides modifying the variable
  79. values."
  80. ;; This setq-default sexp is an exhaustive list of all the supported
  81. ;; spacemacs settings.
  82. (setq-default
  83. ;; If non nil ELPA repositories are contacted via HTTPS whenever it's
  84. ;; possible. Set it to nil if you have no way to use HTTPS in your
  85. ;; environment, otherwise it is strongly recommended to let it set to t.
  86. ;; This variable has no effect if Emacs is launched with the parameter
  87. ;; `--insecure' which forces the value of this variable to nil.
  88. ;; (default t)
  89. dotspacemacs-elpa-https t
  90. ;; Maximum allowed time in seconds to contact an ELPA repository.
  91. dotspacemacs-elpa-timeout 5
  92. ;; If non nil then spacemacs will check for updates at startup
  93. ;; when the current branch is not `develop'. Note that checking for
  94. ;; new versions works via git commands, thus it calls GitHub services
  95. ;; whenever you start Emacs. (default nil)
  96. dotspacemacs-check-for-update nil
  97. ;; If non-nil, a form that evaluates to a package directory. For example, to
  98. ;; use different package directories for different Emacs versions, set this
  99. ;; to `emacs-version'.
  100. dotspacemacs-elpa-subdirectory nil
  101. ;; One of `vim', `emacs' or `hybrid'.
  102. ;; `hybrid' is like `vim' except that `insert state' is replaced by the
  103. ;; `hybrid state' with `emacs' key bindings. The value can also be a list
  104. ;; with `:variables' keyword (similar to layers). Check the editing styles
  105. ;; section of the documentation for details on available variables.
  106. ;; (default 'vim)
  107. dotspacemacs-editing-style 'vim
  108. ;; If non nil output loading progress in `*Messages*' buffer. (default nil)
  109. dotspacemacs-verbose-loading nil
  110. ;; Specify the startup banner. Default value is `official', it displays
  111. ;; the official spacemacs logo. An integer value is the index of text
  112. ;; banner, `random' chooses a random text banner in `core/banners'
  113. ;; directory. A string value must be a path to an image format supported
  114. ;; by your Emacs build.
  115. ;; If the value is nil then no banner is displayed. (default 'official)
  116. dotspacemacs-startup-banner 'official
  117. ;; List of items to show in startup buffer or an association list of
  118. ;; the form `(list-type . list-size)`. If nil then it is disabled.
  119. ;; Possible values for list-type are:
  120. ;; `recents' `bookmarks' `projects' `agenda' `todos'."
  121. ;; List sizes may be nil, in which case
  122. ;; `spacemacs-buffer-startup-lists-length' takes effect.
  123. dotspacemacs-startup-lists '((recents . 5)
  124. (projects . 7))
  125. ;; True if the home buffer should respond to resize events.
  126. dotspacemacs-startup-buffer-responsive t
  127. ;; Default major mode of the scratch buffer (default `text-mode')
  128. dotspacemacs-scratch-mode 'text-mode
  129. ;; List of themes, the first of the list is loaded when spacemacs starts.
  130. ;; Press <SPC> T n to cycle to the next theme in the list (works great
  131. ;; with 2 themes variants, one dark and one light)
  132. dotspacemacs-themes '(spacemacs-dark
  133. spacemacs-light)
  134. ;; If non nil the cursor color matches the state color in GUI Emacs.
  135. dotspacemacs-colorize-cursor-according-to-state t
  136. ;; Default font, or prioritized list of fonts. `powerline-scale' allows to
  137. ;; quickly tweak the mode-line size to make separators look not too crappy.
  138. dotspacemacs-default-font '("Source Code Pro"
  139. :size 13
  140. :weight normal
  141. :width normal
  142. :powerline-scale 1.1)
  143. ;; The leader key
  144. dotspacemacs-leader-key "SPC"
  145. ;; The key used for Emacs commands (M-x) (after pressing on the leader key).
  146. ;; (default "SPC")
  147. dotspacemacs-emacs-command-key "SPC"
  148. ;; The key used for Vim Ex commands (default ":")
  149. dotspacemacs-ex-command-key ":"
  150. ;; The leader key accessible in `emacs state' and `insert state'
  151. ;; (default "M-m")
  152. dotspacemacs-emacs-leader-key "M-m"
  153. ;; Major mode leader key is a shortcut key which is the equivalent of
  154. ;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",")
  155. dotspacemacs-major-mode-leader-key ","
  156. ;; Major mode leader key accessible in `emacs state' and `insert state'.
  157. ;; (default "C-M-m")
  158. dotspacemacs-major-mode-emacs-leader-key "C-M-m"
  159. ;; These variables control whether separate commands are bound in the GUI to
  160. ;; the key pairs C-i, TAB and C-m, RET.
  161. ;; Setting it to a non-nil value, allows for separate commands under <C-i>
  162. ;; and TAB or <C-m> and RET.
  163. ;; In the terminal, these pairs are generally indistinguishable, so this only
  164. ;; works in the GUI. (default nil)
  165. dotspacemacs-distinguish-gui-tab nil
  166. ;; If non nil `Y' is remapped to `y$' in Evil states. (default nil)
  167. dotspacemacs-remap-Y-to-y$ nil
  168. ;; If non-nil, the shift mappings `<' and `>' retain visual state if used
  169. ;; there. (default t)
  170. dotspacemacs-retain-visual-state-on-shift t
  171. ;; If non-nil, J and K move lines up and down when in visual mode.
  172. ;; (default nil)
  173. dotspacemacs-visual-line-move-text nil
  174. ;; If non nil, inverse the meaning of `g' in `:substitute' Evil ex-command.
  175. ;; (default nil)
  176. dotspacemacs-ex-substitute-global nil
  177. ;; Name of the default layout (default "Default")
  178. dotspacemacs-default-layout-name "Default"
  179. ;; If non nil the default layout name is displayed in the mode-line.
  180. ;; (default nil)
  181. dotspacemacs-display-default-layout nil
  182. ;; If non nil then the last auto saved layouts are resume automatically upon
  183. ;; start. (default nil)
  184. dotspacemacs-auto-resume-layouts nil
  185. ;; Size (in MB) above which spacemacs will prompt to open the large file
  186. ;; literally to avoid performance issues. Opening a file literally means that
  187. ;; no major mode or minor modes are active. (default is 1)
  188. dotspacemacs-large-file-size 1
  189. ;; Location where to auto-save files. Possible values are `original' to
  190. ;; auto-save the file in-place, `cache' to auto-save the file to another
  191. ;; file stored in the cache directory and `nil' to disable auto-saving.
  192. ;; (default 'cache)
  193. dotspacemacs-auto-save-file-location 'cache
  194. ;; Maximum number of rollback slots to keep in the cache. (default 5)
  195. dotspacemacs-max-rollback-slots 5
  196. ;; If non nil, `helm' will try to minimize the space it uses. (default nil)
  197. dotspacemacs-helm-resize nil
  198. ;; if non nil, the helm header is hidden when there is only one source.
  199. ;; (default nil)
  200. dotspacemacs-helm-no-header nil
  201. ;; define the position to display `helm', options are `bottom', `top',
  202. ;; `left', or `right'. (default 'bottom)
  203. dotspacemacs-helm-position 'bottom
  204. ;; Controls fuzzy matching in helm. If set to `always', force fuzzy matching
  205. ;; in all non-asynchronous sources. If set to `source', preserve individual
  206. ;; source settings. Else, disable fuzzy matching in all sources.
  207. ;; (default 'always)
  208. dotspacemacs-helm-use-fuzzy 'always
  209. ;; If non nil the paste micro-state is enabled. When enabled pressing `p`
  210. ;; several times cycle between the kill ring content. (default nil)
  211. dotspacemacs-enable-paste-transient-state nil
  212. ;; Which-key delay in seconds. The which-key buffer is the popup listing
  213. ;; the commands bound to the current keystroke sequence. (default 0.4)
  214. dotspacemacs-which-key-delay 0.4
  215. ;; Which-key frame position. Possible values are `right', `bottom' and
  216. ;; `right-then-bottom'. right-then-bottom tries to display the frame to the
  217. ;; right; if there is insufficient space it displays it at the bottom.
  218. ;; (default 'bottom)
  219. dotspacemacs-which-key-position 'bottom
  220. ;; If non nil a progress bar is displayed when spacemacs is loading. This
  221. ;; may increase the boot time on some systems and emacs builds, set it to
  222. ;; nil to boost the loading time. (default t)
  223. dotspacemacs-loading-progress-bar t
  224. ;; If non nil the frame is fullscreen when Emacs starts up. (default nil)
  225. ;; (Emacs 24.4+ only)
  226. dotspacemacs-fullscreen-at-startup nil
  227. ;; If non nil `spacemacs/toggle-fullscreen' will not use native fullscreen.
  228. ;; Use to disable fullscreen animations in OSX. (default nil)
  229. dotspacemacs-fullscreen-use-non-native nil
  230. ;; If non nil the frame is maximized when Emacs starts up.
  231. ;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
  232. ;; (default nil) (Emacs 24.4+ only)
  233. dotspacemacs-maximized-at-startup t
  234. ;; A value from the range (0..100), in increasing opacity, which describes
  235. ;; the transparency level of a frame when it's active or selected.
  236. ;; Transparency can be toggled through `toggle-transparency'. (default 90)
  237. dotspacemacs-active-transparency 90
  238. ;; A value from the range (0..100), in increasing opacity, which describes
  239. ;; the transparency level of a frame when it's inactive or deselected.
  240. ;; Transparency can be toggled through `toggle-transparency'. (default 90)
  241. dotspacemacs-inactive-transparency 90
  242. ;; If non nil show the titles of transient states. (default t)
  243. dotspacemacs-show-transient-state-title t
  244. ;; If non nil show the color guide hint for transient state keys. (default t)
  245. dotspacemacs-show-transient-state-color-guide t
  246. ;; If non nil unicode symbols are displayed in the mode line. (default t)
  247. dotspacemacs-mode-line-unicode-symbols t
  248. ;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth
  249. ;; scrolling overrides the default behavior of Emacs which recenters point
  250. ;; when it reaches the top or bottom of the screen. (default t)
  251. dotspacemacs-smooth-scrolling t
  252. ;; Control line numbers activation.
  253. ;; If set to `t' or `relative' line numbers are turned on in all `prog-mode' and
  254. ;; `text-mode' derivatives. If set to `relative', line numbers are relative.
  255. ;; This variable can also be set to a property list for finer control:
  256. ;; '(:relative nil
  257. ;; :disabled-for-modes dired-mode
  258. ;; doc-view-mode
  259. ;; markdown-mode
  260. ;; org-mode
  261. ;; pdf-view-mode
  262. ;; text-mode
  263. ;; :size-limit-kb 1000)
  264. ;; (default nil)
  265. dotspacemacs-line-numbers nil
  266. ;; Code folding method. Possible values are `evil' and `origami'.
  267. ;; (default 'evil)
  268. dotspacemacs-folding-method 'evil
  269. ;; If non-nil smartparens-strict-mode will be enabled in programming modes.
  270. ;; (default nil)
  271. dotspacemacs-smartparens-strict-mode nil
  272. ;; If non-nil pressing the closing parenthesis `)' key in insert mode passes
  273. ;; over any automatically added closing parenthesis, bracket, quote, etc…
  274. ;; This can be temporary disabled by pressing `C-q' before `)'. (default nil)
  275. dotspacemacs-smart-closing-parenthesis nil
  276. ;; Select a scope to highlight delimiters. Possible values are `any',
  277. ;; `current', `all' or `nil'. Default is `all' (highlight any scope and
  278. ;; emphasis the current one). (default 'all)
  279. dotspacemacs-highlight-delimiters 'all
  280. ;; If non nil, advise quit functions to keep server open when quitting.
  281. ;; (default nil)
  282. dotspacemacs-persistent-server nil
  283. ;; List of search tool executable names. Spacemacs uses the first installed
  284. ;; tool of the list. Supported tools are `ag', `pt', `ack' and `grep'.
  285. ;; (default '("ag" "pt" "ack" "grep"))
  286. dotspacemacs-search-tools '("ag" "pt" "ack" "grep")
  287. ;; The default package repository used if no explicit repository has been
  288. ;; specified with an installed package.
  289. ;; Not used for now. (default nil)
  290. dotspacemacs-default-package-repository nil
  291. ;; Delete whitespace while saving buffer. Possible values are `all'
  292. ;; to aggressively delete empty line and long sequences of whitespace,
  293. ;; `trailing' to delete only the whitespace at end of lines, `changed'to
  294. ;; delete only whitespace for changed lines or `nil' to disable cleanup.
  295. ;; (default nil)
  296. dotspacemacs-whitespace-cleanup nil
  297. ))
  298.  
  299. (defun dotspacemacs/user-init ()
  300. ;; Enable these languages for org-mode:
  301.  
  302. ;;(org-babel-do-load-languages
  303. ;; 'org-babel-load-languages
  304. ;; '((emacs-lisp . t)
  305. ;; (java . t)
  306. ;; (latex . t)
  307. ;; (python . t)
  308. ;; (sh . t)))
  309.  
  310. "Initialization function for user code.
  311. It is called immediately after `dotspacemacs/init', before layer configuration
  312. executes.
  313. This function is mostly useful for variables that need to be set
  314. before packages are loaded. If you are unsure, you should try in setting them in
  315. `dotspacemacs/user-config' first."
  316. )
  317. (defun dotspacemacs/user-config ()
  318. "Configuration function for user code.
  319. This function is called at the very end of Spacemacs initialization after
  320. layers configuration.
  321. This is the place where most of your configurations should be done. Unless it is
  322. explicitly specified that a variable should be set before a package is loaded,
  323. you should place your code here."
  324. ;; This command makes right alt key not trigger meta. Userful for []{} keys.
  325. (setq-default mac-right-option-modifier nil)
  326. ;; This command hopefully resizes images in display.
  327. (setq org-image-actual-width (/ (display-pixel-width) 3))
  328. ;; This command will hopefully indent lines in org mode
  329. (setq org-startup-indented t)
  330. ;; Make it work plz
  331. ;; (require 'ox-twbs)
  332. ;; stupid hack required to make it work 😠
  333. ;;
  334.  
  335. ;; THIS IS THE END
  336. )
  337. ;; Do not write anything past this comment. This is where Emacs will
  338. ;; auto-generate custom variable definitions.
  339. (custom-set-variables
  340. ;; custom-set-variables was added by Custom.
  341. ;; If you edit it by hand, you could mess it up, so be careful.
  342. ;; Your init file should contain only one such instance.
  343. ;; If there is more than one, they won't work right.
  344. '(package-selected-packages
  345. (quote
  346. (helm-ispell ox-twbs define-word xterm-color ws-butler winum which-key web-mode volatile-highlights vi-tilde-fringe uuidgen use-package unfill toc-org tagedit spaceline smeargle slim-mode shell-pop scss-mode sass-mode reveal-in-osx-finder restart-emacs rainbow-delimiters pug-mode popwin persp-mode pcre2el pbcopy paradox osx-trash osx-dictionary orgit org-projectile org-present org-pomodoro org-mime org-journal org-download org-bullets open-junk-file neotree mwim multi-term move-text mmm-mode markdown-toc magit-gitflow macrostep lorem-ipsum linum-relative link-hint less-css-mode launchctl indent-guide hungry-delete htmlize hl-todo highlight-parentheses highlight-numbers highlight-indentation helm-themes helm-swoop helm-projectile helm-mode-manager helm-make helm-gitignore helm-flx helm-descbinds helm-css-scss helm-company helm-c-yasnippet helm-ag google-translate golden-ratio gnuplot gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link git-gutter-fringe git-gutter-fringe+ gh-md fuzzy flyspell-correct-helm flycheck-pos-tip flx-ido 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 evil-lisp-state evil-indent-plus evil-iedit-state evil-exchange evil-escape evil-ediff evil-args evil-anzu eval-sexp-fu eshell-z eshell-prompt-extras esh-help emmet-mode elisp-slime-nav dumb-jump diminish diff-hl company-web company-statistics column-enforce-mode clean-aindent-mode auto-yasnippet auto-highlight-symbol auto-dictionary auto-compile aggressive-indent adaptive-wrap ace-window ace-link ace-jump-helm-line ac-ispell))))
  347. (custom-set-faces
  348. ;; custom-set-faces was added by Custom.
  349. ;; If you edit it by hand, you could mess it up, so be careful.
  350. ;; Your init file should contain only one such instance.
  351. ;; If there is more than one, they won't work right.
  352. )
Add Comment
Please, Sign In to add comment