blob: b01383d27170d13375a4f9bb60d35ecf8267ffbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
;; Generic variables for modes
(use-package whitespace
:ensure nil
:demand t
:config
(setq whitespace-style '(face
tabs
spaces
trailing
space-before-tab
newline indentation
empty space-after-tab
space-mark tab-mark))
:hook
(prog-mode . whitespace-mode))
(use-package display-line-numbers
:ensure nil
:demand t
:bind
(("<f12>" . display-line-numbers-mode))
:hook (prog-mode . display-line-numbers-mode)
:config
(setq display-line-numbers-type 'relative))
;; Todo Keywords highlighting, colors defined in bard-emacs-theme.el
(use-package hl-todo
:ensure t
:hook
(prog-mode . hl-todo-mode)
:config
(setq hl-todo-highlight-punctuation ":"))
(provide 'bard-emacs-ui)
;;; bard-emacs-ui.el ends here
|