summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cirno.pngbin76025 -> 75699 bytes
-rw-r--r--config.org6
-rw-r--r--dracula-custom-theme.el4
3 files changed, 7 insertions, 3 deletions
diff --git a/cirno.png b/cirno.png
index e7f7ee4..67c76ee 100644
--- a/cirno.png
+++ b/cirno.png
Binary files differ
diff --git a/config.org b/config.org
index 6684bcb..ff4d2a7 100644
--- a/config.org
+++ b/config.org
@@ -38,6 +38,10 @@ Some quality-of-life improvements
(setq ring-bell-function 'ignore)
#+end_src
+*** Disable fringes
+#+begin_src emacs-lisp
+ (set-fringe-mode 0)
+#+end_src
** Visual improvements
*** Enable line number
@@ -174,7 +178,7 @@ My preferred org-mode defaults
;; Also handle undocumented (<active> <inactive>) form.
((numberp (cadr alpha)) (cadr alpha)))
100)
- '(80 . 80) '(100 . 100)))))
+ '(90 . 90) '(100 . 100)))))
(global-set-key (kbd "C-c t") 'toggle-transparency)
#+end_src
diff --git a/dracula-custom-theme.el b/dracula-custom-theme.el
index d9b3949..a121516 100644
--- a/dracula-custom-theme.el
+++ b/dracula-custom-theme.el
@@ -33,7 +33,7 @@
'(button ((t (:inherit (link)))))
'(link ((t (:underline (:color foreground-color :style line) :foreground "#8be9fd"))))
'(link-visited ((default (:inherit (link))) (((class color) (background light)) (:foreground "magenta4")) (((class color) (background dark)) (:foreground "violet"))))
- '(fringe ((t (:foreground "#b6b6b2" :background "#282a36"))))
+ '(fringe ((t (:foreground "#b6b6b2" :background "#000000"))))
'(header-line ((t (:inherit 'mode-line))))
'(tooltip ((t (:foreground "#f8f8f2" :background "#44475a"))))
'(mode-line ((t (:box (:line-width (1 . 1) :color "#44475a" :style nil) :inverse-video nil :foreground "#f8f8f2" :background "#44475a"))))
@@ -47,7 +47,7 @@
'(match ((t (:foreground "#282a36" :background "#f1fa8c"))))
'(next-error ((t (:inherit (region)))))
'(query-replace ((t (:inherit (isearch)))))
- '(default ((t (:family "Hack Nerd Font" :foundry "SRC" :width normal :height 113 :weight normal :slant normal :underline nil :overline nil :extend nil :strike-through nil :box nil :inverse-video nil :foreground "#F8F8F2" :background "#262626" :stipple nil :inherit nil)))))
+ '(default ((t (:family "Hack Nerd Font" :foundry "SRC" :width normal :height 113 :weight normal :slant normal :underline nil :overline nil :extend nil :strike-through nil :box nil :inverse-video nil :foreground "#F8F8F2" :background "#000000" :stipple nil :inherit nil)))))
(provide-theme 'dracula-custom)