;; 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 (("" . 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