Emacs: Fixed some comments

This commit is contained in:
Marcel Kapfer 2018-08-18 05:26:55 +02:00
parent 1364f1b8ad
commit 8123e593bc
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 4 additions and 4 deletions

View File

@ -91,9 +91,9 @@
require-final-newline t require-final-newline t
;; use german directory in ispell ;; use german directory in ispell
ispell-dictionary "german" ispell-dictionary "german"
;;; always follow symlinks to git repos ;; always follow symlinks to git repos
vc-follow-symlinks t vc-follow-symlinks t
;;; indent using spaces, not tabs ;; indent using spaces, not tabs
indent-tabs-mode nil indent-tabs-mode nil
;; tab width ;; tab width
tab-width 2 tab-width 2
@ -159,13 +159,13 @@
;; delete trailing whitespaces on save ;; delete trailing whitespaces on save
(add-hook 'before-save-hook #'delete-trailing-whitespace) (add-hook 'before-save-hook #'delete-trailing-whitespace)
;;; set default column width ;; set default column width
(setq-default fill-column 80) (setq-default fill-column 80)
;; set cursor style to a vertical bar ;; set cursor style to a vertical bar
(setq-default cursor-type 'bar) (setq-default cursor-type 'bar)
;;; hide tool bar, menu bar and scroll bar ;; hide tool bar, menu bar and scroll bar
(menu-bar-mode 0) (menu-bar-mode 0)
(tool-bar-mode 0) (tool-bar-mode 0)
(scroll-bar-mode 0) (scroll-bar-mode 0)