mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-17 20:40:58 +01:00
update emacs config to 21th century
This commit is contained in:
17
conf-lisp/display.el
Normal file
17
conf-lisp/display.el
Normal file
@@ -0,0 +1,17 @@
|
||||
;;; Display settings
|
||||
|
||||
;; better visibility of cursor in console sessions
|
||||
(unless (display-graphic-p)
|
||||
;; instead of closing the terminal, just kill the buffer
|
||||
(global-set-key (kbd "C-x c") 'kill-this-buffer)
|
||||
(set-face-attribute 'fringe nil :inverse-video t)
|
||||
(invert-face 'default)
|
||||
(invert-face 'mode-line))
|
||||
|
||||
(use-package solarized-theme
|
||||
:ensure t
|
||||
:config
|
||||
(load-theme 'solarized-dark t))
|
||||
|
||||
;;; ** increase default font size on startup
|
||||
(set-face-attribute 'default nil :height 133)
|
||||
Reference in New Issue
Block a user