diff --git a/spacemacs b/spacemacs index 00c90e9..5f6c3cd 100644 --- a/spacemacs +++ b/spacemacs @@ -100,7 +100,7 @@ ;; Enable micro-state for helm buffer when pressing on TAB." dotspacemacs-helm-micro-state t ;; 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. ;; Use to disable fullscreen animations in OSX." dotspacemacs-fullscreen-use-non-native nil @@ -146,6 +146,7 @@ "This is were you can ultimately override default Spacemacs configuration. This function is called at the very end of Spacemacs initialization." (eyebrowse-setup-opinionated-keys) + (add-hook 'doc-view-mode-hook 'auto-revert-mode) (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. ;; Your init file should contain only one such instance. ;; 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-default-range (quote ahs-range-whole-buffer)) '(ahs-idle-interval 0.25) '(ahs-idle-timer 0 t) '(ahs-inhibit-face-list nil) + '(erc-modules (quote (scrolltobottom))) '(paradox-github-token t) '(ring-bell-function (quote ignore) t)) (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. ;; Your init file should contain only one such instance. ;; 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))))) diff --git a/spacemacs_private/dustin/extensions.el b/spacemacs_private/dustin/extensions.el deleted file mode 100644 index 58545ac..0000000 --- a/spacemacs_private/dustin/extensions.el +++ /dev/null @@ -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 -;; 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- -;; -;; (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 diff --git a/spacemacs_private/dustin/packages.el b/spacemacs_private/dustin/packages.el deleted file mode 100644 index c1602ba..0000000 --- a/spacemacs_private/dustin/packages.el +++ /dev/null @@ -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 -;; 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- -;; -(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