Update spacemacs config

This commit is contained in:
2017-11-14 14:43:32 -08:00
parent b762364d6d
commit 75b0d39178

140
spacemacs
View File

@@ -48,9 +48,8 @@
(add-to-list 'ttm-layers 'osx))) (add-to-list 'ttm-layers 'osx)))
(defun dotspacemacs/layers () (defun dotspacemacs/layers ()
"Configuration Layers declaration. "Layer configuration:
You should not put any user code in this function besides modifying the variable This function should only modify configuration layer settings."
values."
(setq-default (setq-default
;; Base distribution to use. This is a layer contained in the directory ;; Base distribution to use. This is a layer contained in the directory
;; `+distribution'. For now available distributions are `spacemacs-base' ;; `+distribution'. For now available distributions are `spacemacs-base'
@@ -86,23 +85,22 @@ values."
dotspacemacs-excluded-packages '() dotspacemacs-excluded-packages '()
;; Defines the behaviour of Spacemacs when installing packages. ;; Defines the behaviour of Spacemacs when installing packages.
;; Possible values are `used-only', `used-but-keep-unused' and `all'. ;; Possible values are `used-only', `used-but-keep-unused' and `all'.
;; `used-only' installs only explicitly used packages and uninstall any ;; `used-only' installs only explicitly used packages and deletes any unused
;; unused packages as well as their unused dependencies. ;; packages as well as their unused dependencies. `used-but-keep-unused'
;; `used-but-keep-unused' installs only the used packages but won't uninstall ;; installs only the used packages but won't delete unused ones. `all'
;; them if they become unused. `all' installs *all* packages supported by ;; installs *all* packages supported by Spacemacs and never uninstalls them.
;; Spacemacs and never uninstall them. (default is `used-only') ;; (default is `used-only')
dotspacemacs-install-packages 'used-only)) dotspacemacs-install-packages 'used-only))
(defun dotspacemacs/init () (defun dotspacemacs/init ()
"Initialization function. "Initialization:
This function is called at the very startup of Spacemacs initialization This function is called at the very beginning of Spacemacs startup,
before layers configuration. before layer configuration.
You should not put any user code in there besides modifying the variable It should only modify the values of Spacemacs settings."
values."
;; This setq-default sexp is an exhaustive list of all the supported ;; This setq-default sexp is an exhaustive list of all the supported
;; spacemacs settings. ;; spacemacs settings.
(setq-default (setq-default
;; If non nil ELPA repositories are contacted via HTTPS whenever it's ;; 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 ;; 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. ;; environment, otherwise it is strongly recommended to let it set to t.
;; This variable has no effect if Emacs is launched with the parameter ;; This variable has no effect if Emacs is launched with the parameter
@@ -110,16 +108,24 @@ values."
;; (default t) ;; (default t)
dotspacemacs-elpa-https t dotspacemacs-elpa-https t
;; Maximum allowed time in seconds to contact an ELPA repository. ;; Maximum allowed time in seconds to contact an ELPA repository.
;; (default 5)
dotspacemacs-elpa-timeout 5 dotspacemacs-elpa-timeout 5
;; If non nil then spacemacs will check for updates at startup ;; If non-nil then Spacelpa repository is the primary source to install
;; a locked version of packages. If nil then Spacemacs will install the lastest
;; version of packages from MELPA. (default nil)
dotspacemacs-use-spacelpa nil
;; If non-nil then verify the signature for downloaded Spacelpa archives.
;; (default nil)
dotspacemacs-verify-spacelpa-archives nil
;; If non-nil then spacemacs will check for updates at startup
;; when the current branch is not `develop'. Note that checking for ;; when the current branch is not `develop'. Note that checking for
;; new versions works via git commands, thus it calls GitHub services ;; new versions works via git commands, thus it calls GitHub services
;; whenever you start Emacs. (default nil) ;; whenever you start Emacs. (default nil)
dotspacemacs-check-for-update nil dotspacemacs-check-for-update nil
;; If non-nil, a form that evaluates to a package directory. For example, to ;; If non-nil, a form that evaluates to a package directory. For example, to
;; use different package directories for different Emacs versions, set this ;; use different package directories for different Emacs versions, set this
;; to `emacs-version'. ;; to `emacs-version'. (default 'emacs-version)
dotspacemacs-elpa-subdirectory nil dotspacemacs-elpa-subdirectory 'emacs-version
;; One of `vim', `emacs' or `hybrid'. ;; One of `vim', `emacs' or `hybrid'.
;; `hybrid' is like `vim' except that `insert state' is replaced by the ;; `hybrid' is like `vim' except that `insert state' is replaced by the
;; `hybrid state' with `emacs' key bindings. The value can also be a list ;; `hybrid state' with `emacs' key bindings. The value can also be a list
@@ -127,7 +133,7 @@ values."
;; section of the documentation for details on available variables. ;; section of the documentation for details on available variables.
;; (default 'vim) ;; (default 'vim)
dotspacemacs-editing-style 'vim dotspacemacs-editing-style 'vim
;; If non nil output loading progress in `*Messages*' buffer. (default nil) ;; If non-nil output loading progress in `*Messages*' buffer. (default nil)
dotspacemacs-verbose-loading nil dotspacemacs-verbose-loading nil
;; Specify the startup banner. Default value is `official', it displays ;; Specify the startup banner. Default value is `official', it displays
;; the official spacemacs logo. An integer value is the index of text ;; the official spacemacs logo. An integer value is the index of text
@@ -139,17 +145,17 @@ values."
;; List of items to show in startup buffer or an association list of ;; List of items to show in startup buffer or an association list of
;; the form `(list-type . list-size)`. If nil then it is disabled. ;; the form `(list-type . list-size)`. If nil then it is disabled.
;; Possible values for list-type are: ;; Possible values for list-type are:
;; `recents' `bookmarks' `projects' `agenda' `todos'." ;; `recents' `bookmarks' `projects' `agenda' `todos'.
;; List sizes may be nil, in which case ;; List sizes may be nil, in which case
;; `spacemacs-buffer-startup-lists-length' takes effect. ;; `spacemacs-buffer-startup-lists-length' takes effect.
dotspacemacs-startup-lists '((recents . 5) dotspacemacs-startup-lists '((recents . 5)
(projects . 7)) (projects . 7))
;; True if the home buffer should respond to resize events. ;; True if the home buffer should respond to resize events. (default t)
dotspacemacs-startup-buffer-responsive t dotspacemacs-startup-buffer-responsive t
;; Default major mode of the scratch buffer (default `text-mode') ;; Default major mode of the scratch buffer (default `text-mode')
dotspacemacs-scratch-mode 'text-mode dotspacemacs-scratch-mode 'text-mode
;; List of themes, the first of the list is loaded when spacemacs starts. ;; 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 ;; Press `SPC T n' to cycle to the next theme in the list (works great
;; with 2 themes variants, one dark and one light) ;; with 2 themes variants, one dark and one light)
dotspacemacs-themes '(spacemacs-dark) dotspacemacs-themes '(spacemacs-dark)
;; If non nil the cursor color matches the state color in GUI Emacs. ;; If non nil the cursor color matches the state color in GUI Emacs.
@@ -161,9 +167,9 @@ values."
:weight normal :weight normal
:width normal :width normal
:powerline-scale 1.1) :powerline-scale 1.1)
;; The leader key ;; The leader key (default "SPC")
dotspacemacs-leader-key "SPC" dotspacemacs-leader-key "SPC"
;; The key used for Emacs commands (M-x) (after pressing on the leader key). ;; The key used for Emacs commands `M-x' (after pressing on the leader key).
;; (default "SPC") ;; (default "SPC")
dotspacemacs-emacs-command-key "SPC" dotspacemacs-emacs-command-key "SPC"
;; The key used for Vim Ex commands (default ":") ;; The key used for Vim Ex commands (default ":")
@@ -178,31 +184,34 @@ values."
;; (default "C-M-m") ;; (default "C-M-m")
dotspacemacs-major-mode-emacs-leader-key "C-:" dotspacemacs-major-mode-emacs-leader-key "C-:"
;; These variables control whether separate commands are bound in the GUI to ;; These variables control whether separate commands are bound in the GUI to
;; the key pairs C-i, TAB and C-m, RET. ;; the key pairs `C-i', `TAB' and `C-m', `RET'.
;; Setting it to a non-nil value, allows for separate commands under <C-i> ;; Setting it to a non-nil value, allows for separate commands under `C-i'
;; and TAB or <C-m> and RET. ;; and TAB or `C-m' and `RET'.
;; In the terminal, these pairs are generally indistinguishable, so this only ;; In the terminal, these pairs are generally indistinguishable, so this only
;; works in the GUI. (default nil) ;; works in the GUI. (default nil)
dotspacemacs-distinguish-gui-tab nil dotspacemacs-distinguish-gui-tab nil
;; If non nil `Y' is remapped to `y$' in Evil states. (default nil) ;; If non-nil `Y' is remapped to `y$' in Evil states. (default nil)
dotspacemacs-remap-Y-to-y$ nil dotspacemacs-remap-Y-to-y$ nil
;; If non-nil, the shift mappings `<' and `>' retain visual state if used ;; If non-nil, the shift mappings `<' and `>' retain visual state if used
;; there. (default t) ;; there. (default t)
dotspacemacs-retain-visual-state-on-shift t dotspacemacs-retain-visual-state-on-shift t
;; If non-nil, J and K move lines up and down when in visual mode. ;; If non-nil, `J' and `K' move lines up and down when in visual mode.
;; (default nil) ;; (default nil)
dotspacemacs-visual-line-move-text nil dotspacemacs-visual-line-move-text nil
;; If non nil, inverse the meaning of `g' in `:substitute' Evil ex-command. ;; If non-nil, inverse the meaning of `g' in `:substitute' Evil ex-command.
;; (default nil) ;; (default nil)
dotspacemacs-ex-substitute-global nil dotspacemacs-ex-substitute-global nil
;; Name of the default layout (default "Default") ;; Name of the default layout (default "Default")
dotspacemacs-default-layout-name "Default" dotspacemacs-default-layout-name "Default"
;; If non nil the default layout name is displayed in the mode-line. ;; If non-nil the default layout name is displayed in the mode-line.
;; (default nil) ;; (default nil)
dotspacemacs-display-default-layout nil dotspacemacs-display-default-layout nil
;; If non nil then the last auto saved layouts are resume automatically upon ;; If non-nil then the last auto saved layouts are resumed automatically upon
;; start. (default nil) ;; start. (default nil)
dotspacemacs-auto-resume-layouts nil dotspacemacs-auto-resume-layouts nil
;; If non-nil, auto-generate layout name when creating new layouts. Only has
;; effect when using the "jump to layout by number" commands. (default nil)
dotspacemacs-auto-generate-layout-names nil
;; Size (in MB) above which spacemacs will prompt to open the large file ;; Size (in MB) above which spacemacs will prompt to open the large file
;; literally to avoid performance issues. Opening a file literally means that ;; literally to avoid performance issues. Opening a file literally means that
;; no major mode or minor modes are active. (default is 1) ;; no major mode or minor modes are active. (default is 1)
@@ -214,9 +223,9 @@ values."
dotspacemacs-auto-save-file-location 'cache dotspacemacs-auto-save-file-location 'cache
;; Maximum number of rollback slots to keep in the cache. (default 5) ;; Maximum number of rollback slots to keep in the cache. (default 5)
dotspacemacs-max-rollback-slots 5 dotspacemacs-max-rollback-slots 5
;; If non nil, `helm' will try to minimize the space it uses. (default nil) ;; If non-nil, `helm' will try to minimize the space it uses. (default nil)
dotspacemacs-helm-resize nil dotspacemacs-helm-resize nil
;; if non nil, the helm header is hidden when there is only one source. ;; if non-nil, the helm header is hidden when there is only one source.
;; (default nil) ;; (default nil)
dotspacemacs-helm-no-header nil dotspacemacs-helm-no-header nil
;; define the position to display `helm', options are `bottom', `top', ;; define the position to display `helm', options are `bottom', `top',
@@ -227,8 +236,9 @@ values."
;; source settings. Else, disable fuzzy matching in all sources. ;; source settings. Else, disable fuzzy matching in all sources.
;; (default 'always) ;; (default 'always)
dotspacemacs-helm-use-fuzzy 'always dotspacemacs-helm-use-fuzzy 'always
;; If non nil the paste micro-state is enabled. When enabled pressing `p` ;; If non-nil, the paste transient-state is enabled. While enabled, pressing
;; several times cycle between the kill ring content. (default nil) ;; `p' several times cycles through the elements in the `kill-ring'.
;; (default nil)
dotspacemacs-enable-paste-transient-state nil dotspacemacs-enable-paste-transient-state nil
;; Which-key delay in seconds. The which-key buffer is the popup listing ;; Which-key delay in seconds. The which-key buffer is the popup listing
;; the commands bound to the current keystroke sequence. (default 0.4) ;; the commands bound to the current keystroke sequence. (default 0.4)
@@ -238,17 +248,23 @@ values."
;; right; if there is insufficient space it displays it at the bottom. ;; right; if there is insufficient space it displays it at the bottom.
;; (default 'bottom) ;; (default 'bottom)
dotspacemacs-which-key-position 'bottom dotspacemacs-which-key-position 'bottom
;; If non nil a progress bar is displayed when spacemacs is loading. This ;; Control where `switch-to-buffer' displays the buffer. If nil,
;; `switch-to-buffer' displays the buffer in the current window even if
;; another same-purpose window is available. If non-nil, `switch-to-buffer'
;; displays the buffer in a same-purpose window even if the buffer can be
;; displayed in the current window. (default nil)
dotspacemacs-switch-to-buffer-prefers-purpose nil
;; 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 ;; may increase the boot time on some systems and emacs builds, set it to
;; nil to boost the loading time. (default t) ;; nil to boost the loading time. (default t)
dotspacemacs-loading-progress-bar t dotspacemacs-loading-progress-bar t
;; If non nil the frame is fullscreen when Emacs starts up. (default nil) ;; If non-nil the frame is fullscreen when Emacs starts up. (default nil)
;; (Emacs 24.4+ only) ;; (Emacs 24.4+ only)
dotspacemacs-fullscreen-at-startup nil dotspacemacs-fullscreen-at-startup nil
;; If non nil `spacemacs/toggle-fullscreen' will not use native fullscreen. ;; If non-nil `spacemacs/toggle-fullscreen' will not use native fullscreen.
;; Use to disable fullscreen animations in OSX. (default nil) ;; Use to disable fullscreen animations in OSX. (default nil)
dotspacemacs-fullscreen-use-non-native nil dotspacemacs-fullscreen-use-non-native nil
;; If non nil the frame is maximized when Emacs starts up. ;; If non-nil the frame is maximized when Emacs starts up.
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil. ;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
;; (default nil) (Emacs 24.4+ only) ;; (default nil) (Emacs 24.4+ only)
dotspacemacs-maximized-at-startup nil dotspacemacs-maximized-at-startup nil
@@ -260,13 +276,13 @@ values."
;; the transparency level of a frame when it's inactive or deselected. ;; the transparency level of a frame when it's inactive or deselected.
;; Transparency can be toggled through `toggle-transparency'. (default 90) ;; Transparency can be toggled through `toggle-transparency'. (default 90)
dotspacemacs-inactive-transparency 90 dotspacemacs-inactive-transparency 90
;; If non nil show the titles of transient states. (default t) ;; If non-nil show the titles of transient states. (default t)
dotspacemacs-show-transient-state-title t dotspacemacs-show-transient-state-title t
;; If non nil show the color guide hint for transient state keys. (default t) ;; If non-nil show the color guide hint for transient state keys. (default t)
dotspacemacs-show-transient-state-color-guide t dotspacemacs-show-transient-state-color-guide t
;; If non nil unicode symbols are displayed in the mode line. (default t) ;; If non-nil unicode symbols are displayed in the mode line. (default t)
dotspacemacs-mode-line-unicode-symbols t dotspacemacs-mode-line-unicode-symbols t
;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth ;; If non-nil smooth scrolling (native-scrolling) is enabled. Smooth
;; scrolling overrides the default behavior of Emacs which recenters point ;; scrolling overrides the default behavior of Emacs which recenters point
;; when it reaches the top or bottom of the screen. (default t) ;; when it reaches the top or bottom of the screen. (default t)
dotspacemacs-smooth-scrolling t dotspacemacs-smooth-scrolling t
@@ -287,7 +303,7 @@ values."
;; Code folding method. Possible values are `evil' and `origami'. ;; Code folding method. Possible values are `evil' and `origami'.
;; (default 'evil) ;; (default 'evil)
dotspacemacs-folding-method 'evil dotspacemacs-folding-method 'evil
;; If non-nil smartparens-strict-mode will be enabled in programming modes. ;; If non-nil `smartparens-strict-mode' will be enabled in programming modes.
;; (default nil) ;; (default nil)
dotspacemacs-smartparens-strict-mode nil dotspacemacs-smartparens-strict-mode nil
;; If non-nil pressing the closing parenthesis `)' key in insert mode passes ;; If non-nil pressing the closing parenthesis `)' key in insert mode passes
@@ -298,23 +314,51 @@ values."
;; `current', `all' or `nil'. Default is `all' (highlight any scope and ;; `current', `all' or `nil'. Default is `all' (highlight any scope and
;; emphasis the current one). (default 'all) ;; emphasis the current one). (default 'all)
dotspacemacs-highlight-delimiters 'all dotspacemacs-highlight-delimiters 'all
;; If non nil, advise quit functions to keep server open when quitting. ;; If non-nil, advise quit functions to keep server open when quitting.
;; (default nil) ;; (default nil)
dotspacemacs-persistent-server nil dotspacemacs-persistent-server nil
;; List of search tool executable names. Spacemacs uses the first installed ;; List of search tool executable names. Spacemacs uses the first installed
;; tool of the list. Supported tools are `ag', `pt', `ack' and `grep'. ;; tool of the list. Supported tools are `rg', `ag', `pt', `ack' and `grep'.
;; (default '("ag" "pt" "ack" "grep")) ;; (default '("rg" "ag" "pt" "ack" "grep"))
dotspacemacs-search-tools '("ag" "pt" "ack" "grep") dotspacemacs-search-tools '("rg" "ag" "pt" "ack" "grep")
;; The default package repository used if no explicit repository has been ;; The default package repository used if no explicit repository has been
;; specified with an installed package. ;; specified with an installed package.
;; Not used for now. (default nil) ;; Not used for now. (default nil)
dotspacemacs-default-package-repository nil dotspacemacs-default-package-repository nil
;; Format specification for setting the frame title.
;; %a - the `abbreviated-file-name', or `buffer-name'
;; %t - `projectile-project-name'
;; %I - `invocation-name'
;; %S - `system-name'
;; %U - contents of $USER
;; %b - buffer name
;; %f - visited file name
;; %F - frame name
;; %s - process status
;; %p - percent of buffer above top of window, or Top, Bot or All
;; %P - percent of buffer above bottom of window, perhaps plus Top, or Bot or All
;; %m - mode name
;; %n - Narrow if appropriate
;; %z - mnemonics of buffer, terminal, and keyboard coding systems
;; %Z - like %z, but including the end-of-line format
;; (default "%I@%S")
dotspacemacs-frame-title-format "%I@%S"
;; Format specification for setting the icon title format
;; (default nil - same as frame-title-format)
dotspacemacs-icon-title-format nil
;; Delete whitespace while saving buffer. Possible values are `all' ;; Delete whitespace while saving buffer. Possible values are `all'
;; to aggressively delete empty line and long sequences of whitespace, ;; to aggressively delete empty line and long sequences of whitespace,
;; `trailing' to delete only the whitespace at end of lines, `changed' to ;; `trailing' to delete only the whitespace at end of lines, `changed' to
;; delete only whitespace for changed lines or `nil' to disable cleanup. ;; delete only whitespace for changed lines or `nil' to disable cleanup.
;; (default nil) ;; (default nil)
dotspacemacs-whitespace-cleanup nil dotspacemacs-whitespace-cleanup nil
;; Either nil or a number of seconds. If non-nil zone out after the specified
;; number of seconds. (default nil)
dotspacemacs-zone-out-when-idle nil
;; Run `spacemacs/prettify-org-buffer' when
;; visiting README.org files of Spacemacs.
;; (default nil)
dotspacemacs-pretty-docs nil
)) ))
(defun dotspacemacs/user-init () (defun dotspacemacs/user-init ()