6220ace290
See updated DOCUMENTATION.org and FAQ.org for more info. * add core-env.el * add library load-env-vars.el * add bootstrap package dotenv-mode.el * remove spacemacs-environment from bootstrap layer * remove dotspacemacs variable dotspacemacs-import-env-vars-from-shell * remove dotspacemacs variable dotspacemacs-improt-env-vars-shell-file-name * add new key binding SPC f e e to open spacemacs.env file * add new key binding SPC f e E to reload environment variable from env file * add new key binding SPC f e C-e to re-initialize the env file from shell.
83 lines
3.4 KiB
EmacsLisp
83 lines
3.4 KiB
EmacsLisp
;;; config.el --- Spacemacs Bootstrap Layer configuration File
|
|
;;
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
;; Thanks to `editorconfig-emacs' for many of these
|
|
(defvar spacemacs--indent-variable-alist
|
|
;; Note that derived modes must come before their sources
|
|
'(((awk-mode c-mode c++-mode java-mode
|
|
idl-mode java-mode objc-mode pike-mode) . c-basic-offset)
|
|
(groovy-mode . groovy-indent-offset)
|
|
(python-mode . python-indent-offset)
|
|
(cmake-mode . cmake-tab-width)
|
|
(coffee-mode . coffee-tab-width)
|
|
(cperl-mode . cperl-indent-level)
|
|
(css-mode . css-indent-offset)
|
|
(elixir-mode . elixir-smie-indent-basic)
|
|
((emacs-lisp-mode lisp-mode) . lisp-indent-offset)
|
|
(enh-ruby-mode . enh-ruby-indent-level)
|
|
(erlang-mode . erlang-indent-level)
|
|
(js2-mode . js2-basic-offset)
|
|
(js3-mode . js3-indent-level)
|
|
((js-mode json-mode) . js-indent-level)
|
|
(latex-mode . (LaTeX-indent-level tex-indent-basic))
|
|
(livescript-mode . livescript-tab-width)
|
|
(mustache-mode . mustache-basic-offset)
|
|
(nxml-mode . nxml-child-indent)
|
|
(perl-mode . perl-indent-level)
|
|
(puppet-mode . puppet-indent-level)
|
|
(ruby-mode . ruby-indent-level)
|
|
(rust-mode . rust-indent-offset)
|
|
(scala-mode . scala-indent:step)
|
|
(sgml-mode . sgml-basic-offset)
|
|
(sh-mode . sh-basic-offset)
|
|
(typescript-mode . typescript-indent-level)
|
|
(web-mode . web-mode-markup-indent-offset)
|
|
(yaml-mode . yaml-indent-offset))
|
|
"An alist where each key is either a symbol corresponding
|
|
to a major mode, a list of such symbols, or the symbol t,
|
|
acting as default. The values are either integers, symbols
|
|
or lists of these.")
|
|
|
|
(defvar vim-style-remap-Y-to-y$
|
|
(spacemacs|dotspacemacs-backward-compatibility
|
|
dotspacemacs-remap-Y-to-y$ nil)
|
|
"If non nil `Y' is remapped to `y$' in Evil states.")
|
|
|
|
(defvar vim-style-retain-visual-state-on-shift
|
|
(spacemacs|dotspacemacs-backward-compatibility
|
|
dotspacemacs-retain-visual-state-on-shift t)
|
|
"If non-nil, the shift mappings `<' and `>' retain visual state
|
|
if used there.")
|
|
|
|
(defvar vim-style-visual-line-move-text
|
|
(spacemacs|dotspacemacs-backward-compatibility
|
|
dotspacemacs-visual-line-move-text nil)
|
|
"If non-nil, J and K move lines up and down when in visual mode.")
|
|
|
|
(defvar vim-style-ex-substitute-global
|
|
(spacemacs|dotspacemacs-backward-compatibility
|
|
dotspacemacs-ex-substitute-global nil)
|
|
"If non nil, inverse the meaning of `g' in `:substitute' Evil ex-command.")
|
|
|
|
;; State cursors
|
|
(defvar spacemacs-evil-cursors '(("normal" "DarkGoldenrod2" box)
|
|
("insert" "chartreuse3" (bar . 2))
|
|
("emacs" "SkyBlue2" box)
|
|
("hybrid" "SkyBlue2" (bar . 2))
|
|
("replace" "chocolate" (hbar . 2))
|
|
("evilified" "LightGoldenrod3" box)
|
|
("visual" "gray" (hbar . 2))
|
|
("motion" "plum3" box)
|
|
("lisp" "HotPink1" box)
|
|
("iedit" "firebrick1" box)
|
|
("iedit-insert" "firebrick1" (bar . 2)))
|
|
"Colors assigned to evil states with cursor definitions.
|
|
To add your own, use `spacemacs/add-evil-curosr'.")
|