Some spacemacs cleanup
This commit is contained in:
10
spacemacs
10
spacemacs
@@ -100,7 +100,7 @@
|
|||||||
;; Enable micro-state for helm buffer when pressing on TAB."
|
;; Enable micro-state for helm buffer when pressing on TAB."
|
||||||
dotspacemacs-helm-micro-state t
|
dotspacemacs-helm-micro-state t
|
||||||
;; If non nil the frame is fullscreen when Emacs starts up (Emacs 24.4+ only).
|
;; If non nil the frame is fullscreen when Emacs starts up (Emacs 24.4+ only).
|
||||||
dotspacemacs-fullscreen-at-startup t
|
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."
|
;; Use to disable fullscreen animations in OSX."
|
||||||
dotspacemacs-fullscreen-use-non-native nil
|
dotspacemacs-fullscreen-use-non-native nil
|
||||||
@@ -146,6 +146,7 @@
|
|||||||
"This is were you can ultimately override default Spacemacs configuration.
|
"This is were you can ultimately override default Spacemacs configuration.
|
||||||
This function is called at the very end of Spacemacs initialization."
|
This function is called at the very end of Spacemacs initialization."
|
||||||
(eyebrowse-setup-opinionated-keys)
|
(eyebrowse-setup-opinionated-keys)
|
||||||
|
(add-hook 'doc-view-mode-hook 'auto-revert-mode)
|
||||||
(setq powerline-default-separator 'nil)
|
(setq powerline-default-separator 'nil)
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -161,12 +162,13 @@ This function is called at the very end of Spacemacs initialization."
|
|||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(ac-ispell-requires 4)
|
'(ac-ispell-requires 4 t)
|
||||||
'(ahs-case-fold-search nil)
|
'(ahs-case-fold-search nil)
|
||||||
'(ahs-default-range (quote ahs-range-whole-buffer))
|
'(ahs-default-range (quote ahs-range-whole-buffer))
|
||||||
'(ahs-idle-interval 0.25)
|
'(ahs-idle-interval 0.25)
|
||||||
'(ahs-idle-timer 0 t)
|
'(ahs-idle-timer 0 t)
|
||||||
'(ahs-inhibit-face-list nil)
|
'(ahs-inhibit-face-list nil)
|
||||||
|
'(erc-modules (quote (scrolltobottom)))
|
||||||
'(paradox-github-token t)
|
'(paradox-github-token t)
|
||||||
'(ring-bell-function (quote ignore) t))
|
'(ring-bell-function (quote ignore) t))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
@@ -174,4 +176,6 @@ This function is called at the very end of Spacemacs initialization."
|
|||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
)
|
'(default ((((class color) (min-colors 257)) (:foreground "#F8F8F2" :background "#272822")) (((class color) (min-colors 89)) (:foreground "#F5F5F5" :background "#1B1E1C"))))
|
||||||
|
'(company-tooltip-common ((t (:inherit company-tooltip :weight bold :underline nil))))
|
||||||
|
'(company-tooltip-common-selection ((t (:inherit company-tooltip-selection :weight bold :underline nil)))))
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
;;; extensions.el --- dustin Layer extensions File for Spacemacs
|
|
||||||
;;
|
|
||||||
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
||||||
;; Copyright (c) 2014-2015 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
|
|
||||||
|
|
||||||
(defvar dustin-pre-extensions
|
|
||||||
'(
|
|
||||||
;; pre extension dustins go here
|
|
||||||
)
|
|
||||||
"List of all extensions to load before the packages.")
|
|
||||||
|
|
||||||
(defvar dustin-post-extensions
|
|
||||||
'(
|
|
||||||
;; post extension dustins go here
|
|
||||||
)
|
|
||||||
"List of all extensions to load after the packages.")
|
|
||||||
|
|
||||||
;; For each extension, define a function dustin/init-<extension-dustin>
|
|
||||||
;;
|
|
||||||
;; (defun dustin/init-my-extension ()
|
|
||||||
;; "Initialize my extension"
|
|
||||||
;; )
|
|
||||||
;;
|
|
||||||
;; Often the body of an initialize function uses `use-package'
|
|
||||||
;; For more info on `use-package', see readme:
|
|
||||||
;; https://github.com/jwiegley/use-package
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
;;; packages.el --- dustin Layer packages File for Spacemacs
|
|
||||||
;;
|
|
||||||
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
||||||
;; Copyright (c) 2014-2015 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
|
|
||||||
|
|
||||||
(defvar dustin-packages
|
|
||||||
'(
|
|
||||||
keychain-environment
|
|
||||||
)
|
|
||||||
"List of all packages to install and/or initialize. Built-in packages
|
|
||||||
which require an initialization must be listed explicitly in the list.")
|
|
||||||
|
|
||||||
(defvar dustin-excluded-packages '()
|
|
||||||
"List of packages to exclude.")
|
|
||||||
|
|
||||||
;; For each package, define a function dustin/init-<package-dustin>
|
|
||||||
;;
|
|
||||||
(defun dustin/init-keychain-environment ()
|
|
||||||
"Initialize my package"
|
|
||||||
(keychain-refresh-environment)
|
|
||||||
)
|
|
||||||
;;
|
|
||||||
;; Often the body of an initialize function uses `use-package'
|
|
||||||
;; For more info on `use-package', see readme:
|
|
||||||
;; https://github.com/jwiegley/use-package
|
|
||||||
Reference in New Issue
Block a user