Skip to content

Commit

Permalink
Various layout adjustements
Browse files Browse the repository at this point in the history
  • Loading branch information
rougier committed Oct 2, 2020
1 parent 48c2682 commit edb1db5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions elegant-dark-theme.el
Expand Up @@ -38,8 +38,8 @@

;;; Require elegant-emacs-common
;;; -------------------------------------------------------------------
; (load "~/.emacs.d/elegant-emacs/elegant-emacs-common.el")
(require 'elegant-emacs-common)
; (load "~/.emacs.d/elegant/elegant.el")
(require 'elegant)
;;; -------------------------------------------------------------------


Expand Down
4 changes: 2 additions & 2 deletions elegant-light-theme.el
Expand Up @@ -37,8 +37,8 @@

;;; Require elegant-emacs-common
;;; -------------------------------------------------------------------
; (load "~/.emacs.d/elegant-emacs/elegant-emacs-common.el")
(require 'elegant-emacs-common)
;; (load "~/.emacs.d/elegant/elegant.el")
(require 'elegant)
;;; -------------------------------------------------------------------


Expand Down
8 changes: 7 additions & 1 deletion elegant.el
Expand Up @@ -40,6 +40,12 @@
'internal-border-width 24)
;;; -------------------------------------------------------------------

;;; Line spacing, can be 0 for code and 1 or 2 for text
;;; -------------------------------------------------------------------
(setq-default line-spacing 0)
(setq x-underline-at-descent-line t)
(setq widget-image-enable nil)
;;; -------------------------------------------------------------------

;;; Line cursor and no blink
;;; -------------------------------------------------------------------
Expand Down Expand Up @@ -162,7 +168,7 @@ background color that is barely perceptible."
(if (and buffer-file-name (buffer-modified-p))
(propertize "(modified)" 'face `(:inherit face-faded)))))
(format-mode-line
(propertize "%4l:%2c " 'face `(:inherit face-faded)))))))
(propertize "%4l:%2c" 'face `(:inherit face-faded)))))))
;;; -------------------------------------------------------------------


Expand Down

0 comments on commit edb1db5

Please sign in to comment.