diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2022-11-09 08:32:07 -0500 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2022-11-09 08:32:07 -0500 |
commit | a9fc9755da40e484595497324b55f2910cf9548d (patch) | |
tree | c7b91c87450846a41c81145ba825cdc4b4cc3759 /lisp | |
parent | f1b5b5680cd582430c159db9ebff5ff5da338cb2 (diff) |
A few better styles
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/general.el | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lisp/general.el b/lisp/general.el index 31e9019..b1dbc29 100644 --- a/lisp/general.el +++ b/lisp/general.el @@ -29,13 +29,20 @@ (setq-default cursor-type 'bar) (blink-cursor-mode 1) -;; Margin +;; Line numbers (global-linum-mode 1) + +;; Minimap (require 'minimap) (minimap-mode 1) (setq-default minimap-window-location "right") (setq-default minimap-highlight-line 1) (setq-default minimap-update-delay 0.5) +(setq-default minimap-hide-fringes 1) +(setq-default minimap-width-fraction 0.05) +(setq-default minimap-dedicated-window 1) + +;; Fringe (setq-default left-fringe-width 20) (setq-default right-fringe-width 20) (set-face-attribute 'fringe nil :background "white") @@ -91,9 +98,9 @@ "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 "#f0f0f0" )) + (face-remap-add-relative 'default :background "gray97" )) (add-hook 'neotree-mode-hook 'my-neotree-mode-hook) -(setq neo-window-width 40) +(setq neo-window-width 36) ;; Smooth scroll (setq redisplay-dont-pause t |