Fix fonts for hidpi
This commit is contained in:
parent
4880433401
commit
9420483d5c
1 changed files with 13 additions and 7 deletions
20
.spacemacs
20
.spacemacs
|
|
@ -175,12 +175,15 @@ before layers configuration."
|
||||||
;; sp-cancel-autoskip-on-backward-movement nil
|
;; sp-cancel-autoskip-on-backward-movement nil
|
||||||
|
|
||||||
;; Custom font
|
;; Custom font
|
||||||
dotspacemacs-default-font '("Droid Sans Mono Dotted for Powerline"
|
dotspacemacs-default-font `("Liberation Mono for Powerline"
|
||||||
:size 13
|
:size ,(if (eq window-system 'x)
|
||||||
:weight normal
|
26
|
||||||
:width normal
|
13
|
||||||
:powerline-scale 1.1)
|
)
|
||||||
)
|
:weight normal
|
||||||
|
:width normal
|
||||||
|
:powerline-scale 1.4)
|
||||||
|
)
|
||||||
;; Set to the location of your Org files on your local system
|
;; Set to the location of your Org files on your local system
|
||||||
;; (setq org-directory "~/org")
|
;; (setq org-directory "~/org")
|
||||||
;; (setq org-mobile-inbox-for-pull "~/org/inbox.org")
|
;; (setq org-mobile-inbox-for-pull "~/org/inbox.org")
|
||||||
|
|
@ -239,7 +242,10 @@ layers configuration."
|
||||||
;(define-key global-map "\\v" 'helm-projectile-find-file)
|
;(define-key global-map "\\v" 'helm-projectile-find-file)
|
||||||
;(define-key global-map "\\c" 'helm-projectile-switch-project)
|
;(define-key global-map "\\c" 'helm-projectile-switch-project)
|
||||||
;(define-key global-map "\\b" 'helm-mini)
|
;(define-key global-map "\\b" 'helm-mini)
|
||||||
(setq powerline-default-separator nil)
|
(setq powerline-default-separator (if (eq window-system 'x)
|
||||||
|
'arrow
|
||||||
|
nil
|
||||||
|
))
|
||||||
;;(smartparens-global-mode f)
|
;;(smartparens-global-mode f)
|
||||||
;; Relative line numbers by default
|
;; Relative line numbers by default
|
||||||
;(linum-relative-toggle)
|
;(linum-relative-toggle)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue