summaryrefslogtreecommitdiff
path: root/lisp/general.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-01-01 08:53:59 -0500
committermattkae <mattkae@protonmail.com>2023-01-01 08:53:59 -0500
commit23fb17b9ca778a5a77bfd9227422b13561dbedb8 (patch)
tree114c32bfe802979970f29f230c573fc06ace6401 /lisp/general.el
parent03535ea723e56470a3ed67200d649b8bfb47e1ae (diff)
Improved the auto install script
Diffstat (limited to 'lisp/general.el')
-rw-r--r--lisp/general.el18
1 files changed, 7 insertions, 11 deletions
diff --git a/lisp/general.el b/lisp/general.el
index 51ff942..be8103e 100644
--- a/lisp/general.el
+++ b/lisp/general.el
@@ -145,18 +145,14 @@
:hook (prog-mode . git-gutter-mode)
:config
(setq git-gutter:update-interval 0.02)
- (setq git-gutter:window-width 1)
- (set-face-background 'git-gutter:modified "dark magenta")
- (set-face-background 'git-gutter:deleted "tomato")
- (set-face-background 'git-gutter:added "forest green"))
-
-(custom-set-variables
- '(git-gutter:modified-sign " ")
- '(git-gutter:added-sign "++")
- '(git-gutter:deleted-sign "--"))
+ (setq git-gutter:window-width 1))
(use-package git-gutter-fringe
- :ensure t)
+ :ensure t
+ :config
+ (define-fringe-bitmap 'git-gutter-fr:added [224] nil nil '(center repeated))
+ (define-fringe-bitmap 'git-gutter-fr:modified [224] nil nil '(center repeated))
+ (define-fringe-bitmap 'git-gutter-fr:deleted [128 192 224 240] nil nil 'bottom))
;; Emojis
(use-package emojify
@@ -247,7 +243,7 @@
company-show-quick-access t
company-tooltip-limit 20
company-dabbrev-downcase nil
- company-backends '((company-capf company-gtags company-elisp company-css))
+ company-backends '((company-capf company-gtags company-elisp company-css company-dabbrev))
)
)