A new start
This commit is contained in:
commit
72271e8cae
78 changed files with 2472 additions and 0 deletions
28
users/profiles/emacs/emacs.d/config/aesthetics.el
Normal file
28
users/profiles/emacs/emacs.d/config/aesthetics.el
Normal file
|
@ -0,0 +1,28 @@
|
|||
(use-package modus-themes
|
||||
:init
|
||||
(setq
|
||||
modus-themes-region '(bg-only no-extend))
|
||||
(modus-themes-load-themes)
|
||||
:config
|
||||
(modus-themes-load-vivendi)
|
||||
:bind ("<f5>" . modus-themes-toggle)
|
||||
)
|
||||
|
||||
(use-package fira-code-mode
|
||||
:custom (fira-code-mode-disabled-ligatures '(":")) ;; List of ligatures to turn off
|
||||
:config (global-fira-code-mode))
|
||||
|
||||
|
||||
(defalias 'yes-or-no-p 'y-or-n-p)
|
||||
(setq use-dialog-box nil
|
||||
display-time-format "%H:%M"
|
||||
mouse-autoselect-window 't
|
||||
inhibit-startup-screen t)
|
||||
(menu-bar-mode -1)
|
||||
(tool-bar-mode -1)
|
||||
(scroll-bar-mode -1)
|
||||
(fringe-mode 1)
|
||||
(display-time-mode 1)
|
||||
|
||||
|
||||
(provide 'aesthetics)
|
Loading…
Add table
Add a link
Reference in a new issue