|
|
@ -40,7 +40,7 @@
|
|
|
|
;; Default font. `powerline-scale' allows to quickly tweak the mode-line
|
|
|
|
;; Default font. `powerline-scale' allows to quickly tweak the mode-line
|
|
|
|
;; size to make separators look not too crappy.
|
|
|
|
;; size to make separators look not too crappy.
|
|
|
|
dotspacemacs-default-font '("Source Code Pro"
|
|
|
|
dotspacemacs-default-font '("Source Code Pro"
|
|
|
|
:size 13
|
|
|
|
:size 11
|
|
|
|
:weight normal
|
|
|
|
:weight normal
|
|
|
|
:width normal
|
|
|
|
:width normal
|
|
|
|
:powerline-scale 1.0)
|
|
|
|
:powerline-scale 1.0)
|
|
|
@ -71,7 +71,7 @@
|
|
|
|
dotspacemacs-fullscreen-use-non-native nil
|
|
|
|
dotspacemacs-fullscreen-use-non-native nil
|
|
|
|
;; If non nil the frame is maximized when Emacs starts up (Emacs 24.4+ only).
|
|
|
|
;; If non nil the frame is maximized when Emacs starts up (Emacs 24.4+ only).
|
|
|
|
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
|
|
|
|
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
|
|
|
|
dotspacemacs-maximized-at-startup nil
|
|
|
|
dotspacemacs-maximized-at-startup t
|
|
|
|
;; A value from the range (0..100), in increasing opacity, which describes the
|
|
|
|
;; A value from the range (0..100), in increasing opacity, which describes the
|
|
|
|
;; transparency level of a frame when it's active or selected. Transparency can
|
|
|
|
;; transparency level of a frame when it's active or selected. Transparency can
|
|
|
|
;; be toggled through `toggle-transparency'.
|
|
|
|
;; be toggled through `toggle-transparency'.
|
|
|
@ -102,14 +102,14 @@
|
|
|
|
(defun dotspacemacs/init ()
|
|
|
|
(defun dotspacemacs/init ()
|
|
|
|
"User initialization for Spacemacs. This function is called at the very
|
|
|
|
"User initialization for Spacemacs. This function is called at the very
|
|
|
|
startup."
|
|
|
|
startup."
|
|
|
|
(setq-default dotspacemacs-default-font '("Source Code Pro"
|
|
|
|
|
|
|
|
:size 12
|
|
|
|
|
|
|
|
:weight normal
|
|
|
|
|
|
|
|
:width normal
|
|
|
|
|
|
|
|
:powerline-scale 1.0))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(setq-default git-enable-github-support t)
|
|
|
|
(setq-default git-enable-github-support t)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun custom-persp/mail ()
|
|
|
|
|
|
|
|
(interactive)
|
|
|
|
|
|
|
|
(custom-persp "Mail"
|
|
|
|
|
|
|
|
(mu4e)))
|
|
|
|
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
(defun dotspacemacs/config ()
|
|
|
|
(defun dotspacemacs/config ()
|
|
|
@ -117,6 +117,7 @@
|
|
|
|
This function is called at the very end of Spacemacs initialization."
|
|
|
|
This function is called at the very end of Spacemacs initialization."
|
|
|
|
(rainbow-mode)
|
|
|
|
(rainbow-mode)
|
|
|
|
(setq powerline-default-separator 'nil)
|
|
|
|
(setq powerline-default-separator 'nil)
|
|
|
|
|
|
|
|
(evil-leader/set-key "Lom" 'custom-persp/mail)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
;; Custom variables
|
|
|
|
;; Custom variables
|
|
|
|