rainbow delimiter thingy oh god i need to setup emacs git
This commit is contained in:
parent
e7a560e722
commit
3251ea2d53
1 changed files with 13 additions and 0 deletions
|
@ -9,6 +9,15 @@
|
||||||
|
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
|
|
||||||
|
;; Line Numbers
|
||||||
|
(column-number-mode)
|
||||||
|
(global-display-line-numbers-mode t)
|
||||||
|
|
||||||
|
(dolist (mode '(org-mode-hook
|
||||||
|
term-mode-hook
|
||||||
|
eshell-mode-hook))
|
||||||
|
(add-hook mode (lambda () (display-line-numbers-mode 0))))
|
||||||
|
|
||||||
;; Bell
|
;; Bell
|
||||||
(setq visible-bell t)
|
(setq visible-bell t)
|
||||||
|
|
||||||
|
@ -74,3 +83,7 @@
|
||||||
|
|
||||||
;; continue configuring from here
|
;; continue configuring from here
|
||||||
;; https://youtu.be/74zOY-vgkyw?t=3125
|
;; https://youtu.be/74zOY-vgkyw?t=3125
|
||||||
|
|
||||||
|
;; rainbow delimiters for lisp (TODO find this for javascript, c++ etc)
|
||||||
|
(use-package rainbow-delimiters
|
||||||
|
:hook (prog-mode . rainbow-delimiters-mode))
|
||||||
|
|
Loading…
Reference in a new issue