diff options
author | mattkae <mattkae@protonmail.com> | 2022-11-11 08:30:34 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2022-11-11 08:30:34 -0500 |
commit | f8f3f5e3ac5b4a8c4723da2441b3be3a6aaf4841 (patch) | |
tree | 5bde9d727b39831638d710c1a9b11742f28fc143 /lisp | |
parent | 0134c5908efec242c81e051dcd70dde8bfd95da9 (diff) |
Better theming and prettifying
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/general.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/general.el b/lisp/general.el index b1dbc29..d3d9f62 100644 --- a/lisp/general.el +++ b/lisp/general.el @@ -45,7 +45,6 @@ ;; Fringe (setq-default left-fringe-width 20) (setq-default right-fringe-width 20) -(set-face-attribute 'fringe nil :background "white") ;; Initialization screen (setq inhibit-splash-screen t) @@ -98,7 +97,7 @@ "Set the colors of neotree to match my personal taste." (setq left-fringe-width 0) (setq right-fringe-width 0) - (face-remap-add-relative 'default :background "gray97" )) + ) (add-hook 'neotree-mode-hook 'my-neotree-mode-hook) (setq neo-window-width 36) @@ -111,7 +110,7 @@ ;; Line highlighting (global-hl-line-mode 1) -(set-face-background 'hl-line "gray97") + ;; Git (use-package git-gutter |