emacs: remove unnecessary comments

This commit is contained in:
Jeremy Baxter 2024-05-07 06:58:28 +12:00
parent e277297e2f
commit ddcb451c18

View file

@ -6,13 +6,10 @@
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize) (package-initialize)
;; disable menu bar, tool bar, scroll bar and savehist
(menu-bar-mode -1) (menu-bar-mode -1)
(tool-bar-mode -1) (tool-bar-mode -1)
(scroll-bar-mode -1) (scroll-bar-mode -1)
(savehist-mode -1) (savehist-mode -1)
;; highlight current line
(global-hl-line-mode) (global-hl-line-mode)
;; undo-tree ;; undo-tree
@ -167,7 +164,6 @@ One will be created if none exist."
(editorconfig-mode) (editorconfig-mode)
;; which-key ;; which-key
;; shows available key binds
(package-install 'which-key) (package-install 'which-key)
(which-key-mode) (which-key-mode)
(setq which-key-side-window-location 'bottom (setq which-key-side-window-location 'bottom