Change to simpler theme
This commit is contained in:
parent
580854a8d1
commit
5754054eba
43
config.org
43
config.org
|
|
@ -69,7 +69,7 @@ Install and set the theme, ensuring that it is always installed:
|
|||
(use-package xresources-theme
|
||||
:ensure t
|
||||
:init
|
||||
(load-theme 'xresources t))
|
||||
(load-theme 'xresources t))
|
||||
#+END_SRC
|
||||
*** All The Icons
|
||||
All The Icons is a package to display cool icons within Emacs.
|
||||
|
|
@ -87,31 +87,6 @@ Install the package, enable it and ensure that it always is installed:
|
|||
:init
|
||||
(all-the-icons-ivy-setup))
|
||||
#+END_SRC
|
||||
*** Mode Line
|
||||
**** Spaceline
|
||||
Spaceline is the modeline of Spacemacs.
|
||||
Install the package, enable it and ensure that it always is installed. Then make sure that the default spaceline config is enabled and that the seperators are arrows, for a powerline effect:
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package spaceline
|
||||
:ensure t
|
||||
:config
|
||||
(require 'spaceline-config)
|
||||
(setq powerline-default-separator (quote arrow))
|
||||
(spaceline-spacemacs-theme))
|
||||
#+END_SRC
|
||||
|
||||
Display the time on the Mode Line, this is more useful for EXWM:
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq display-time-default-load-average nil)
|
||||
(display-time-mode t)
|
||||
#+END_SRC
|
||||
**** Diminish
|
||||
With Diminish you can optionally remove some of the names of the minor modes in the Mode Line.
|
||||
Install the package, enable it and ensure that it always is installed:
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package diminish
|
||||
:ensure t)
|
||||
#+END_SRC
|
||||
*** Emacs Dashboard
|
||||
A startup dashboard for Emacs, replacing the boring old one.
|
||||
Install the package, enable it and ensure that it always is installed:
|
||||
|
|
@ -190,22 +165,6 @@ Set keys:
|
|||
(global-set-key (kbd "<C-left>") 'shrink-window-horizontally)
|
||||
(global-set-key (kbd "<C-right>") 'enlarge-window-horizontally)
|
||||
#+END_SRC
|
||||
*** Fullscreen Function
|
||||
Emacs does not begin fullscreen,
|
||||
this function will automatically fullscreen Emacs on startup:
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(defun fullscreen (&optional f)
|
||||
(interactive)
|
||||
(x-send-client-message nil 0 nil "_NET_WM_STATE" 32
|
||||
'(2 "_NET_WM_STATE_MAXIMIZED_VERT" 0))
|
||||
(x-send-client-message nil 0 nil "_NET_WM_STATE" 32
|
||||
'(2 "_NET_WM_STATE_MAXIMIZED_HORZ" 0)))
|
||||
#+END_SRC
|
||||
|
||||
Call Function on Startup
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(fullscreen)
|
||||
#+END_SRC
|
||||
** Autosave
|
||||
Default Emacs will store backup and "temporary" files in the edited files directory, instead this changes it to move it to the UNIX Temporary Directory.
|
||||
Set backup/temporary file directories:
|
||||
|
|
|
|||
57
init.el
57
init.el
|
|
@ -25,15 +25,66 @@
|
|||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
'(ansi-color-names-vector
|
||||
["#d2ceda" "#f2241f" "#67b11d" "#b1951d" "#3a81c3" "#a31db1" "#21b8c7" "#655370"])
|
||||
'(custom-enabled-themes (quote (ewal-doom-one)))
|
||||
'(custom-safe-themes
|
||||
(quote
|
||||
("86704574d397606ee1433af037c46611fb0a2787e8b6fd1d6c96361575be72d2" "a41b81af6336bd822137d4341f7e16495a49b06c180d6a6417bf9fd1001b6d2b" "3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" default)))
|
||||
("ba72dfc6bb260a9d8609136b9166e04ad0292b9760a3e2431cf0cd0679f83c3a" "e1ecb0536abec692b5a5e845067d75273fe36f24d01210bf0aa5842f2a7e029f" "be9645aaa8c11f76a10bcf36aaf83f54f4587ced1b9b679b55639c87404e2499" "8a379e7ac3a57e64de672dd744d4730b3bdb88ae328e8106f95cd81cbd44e0b6" "41098e2f8fa67dc51bbe89cce4fb7109f53a164e3a92356964c72f76d068587e" "bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "fa2b58bb98b62c3b8cf3b6f02f058ef7827a8e497125de0254f56e373abee088" "2035a16494e06636134de6d572ec47c30e26c3447eafeb6d3a9e8aee73732396" "86704574d397606ee1433af037c46611fb0a2787e8b6fd1d6c96361575be72d2" "a41b81af6336bd822137d4341f7e16495a49b06c180d6a6417bf9fd1001b6d2b" "3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" default)))
|
||||
'(fci-rule-color "#a28c6f")
|
||||
'(hl-todo-keyword-faces
|
||||
(quote
|
||||
(("TODO" . "#dc752f")
|
||||
("NEXT" . "#dc752f")
|
||||
("THEM" . "#2d9574")
|
||||
("PROG" . "#3a81c3")
|
||||
("OKAY" . "#3a81c3")
|
||||
("DONT" . "#f2241f")
|
||||
("FAIL" . "#f2241f")
|
||||
("DONE" . "#42ae2c")
|
||||
("NOTE" . "#b1951d")
|
||||
("KLUDGE" . "#b1951d")
|
||||
("HACK" . "#b1951d")
|
||||
("TEMP" . "#b1951d")
|
||||
("FIXME" . "#dc752f")
|
||||
("XXX+" . "#dc752f")
|
||||
("\\?\\?\\?+" . "#dc752f"))))
|
||||
'(jdee-db-active-breakpoint-face-colors (cons "#030100" "#A76A19"))
|
||||
'(jdee-db-requested-breakpoint-face-colors (cons "#030100" "#813c07"))
|
||||
'(jdee-db-spec-breakpoint-face-colors (cons "#030100" "#100e0d"))
|
||||
'(objed-cursor-color "#874804")
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(org-bullets company flyspell-correct-ivy evil ivy which-key use-package))))
|
||||
(bug-hunter ewal-doom-themes ewal-evil-cursors ewal-spacemacs-themes ewal org-bullets company flyspell-correct-ivy evil ivy which-key use-package)))
|
||||
'(pdf-view-midnight-colors (quote ("#655370" . "#fbf8ef")))
|
||||
'(rustic-ansi-faces
|
||||
["#040201" "#874804" "#813c07" "#a45101" "#A76A19" "#D76C03" "#F09010" "#e8c99f"])
|
||||
'(vc-annotate-background "#040201")
|
||||
'(vc-annotate-color-map
|
||||
(list
|
||||
(cons 20 "#813c07")
|
||||
(cons 40 "#8c4305")
|
||||
(cons 60 "#984903")
|
||||
(cons 80 "#a45101")
|
||||
(cons 100 "#9d4f02")
|
||||
(cons 120 "#964d03")
|
||||
(cons 140 "#8F4C05")
|
||||
(cons 160 "#a75604")
|
||||
(cons 180 "#bf6103")
|
||||
(cons 200 "#D76C03")
|
||||
(cons 220 "#bc6003")
|
||||
(cons 240 "#a15403")
|
||||
(cons 260 "#874804")
|
||||
(cons 280 "#693906")
|
||||
(cons 300 "#4b2b08")
|
||||
(cons 320 "#2d1c0a")
|
||||
(cons 340 "#a28c6f")
|
||||
(cons 360 "#a28c6f")))
|
||||
'(vc-annotate-very-old-color nil))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
'(default ((t (:inherit nil :stipple nil :background "#282a36" :foreground "#f8f8f2" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 109 :width condensed :foundry "ABAT" :family "Courier")))))
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue