From 8123e593bc9c16cc8d5c3d744b79d2c7926e9a30 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Sat, 18 Aug 2018 05:26:55 +0200 Subject: [PATCH] Emacs: Fixed some comments --- emacs/emacs.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emacs/emacs.el b/emacs/emacs.el index 8cd75a7..dc1358a 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -91,9 +91,9 @@ require-final-newline t ;; use german directory in ispell ispell-dictionary "german" -;;; always follow symlinks to git repos + ;; always follow symlinks to git repos vc-follow-symlinks t - ;;; indent using spaces, not tabs + ;; indent using spaces, not tabs indent-tabs-mode nil ;; tab width tab-width 2 @@ -159,13 +159,13 @@ ;; delete trailing whitespaces on save (add-hook 'before-save-hook #'delete-trailing-whitespace) -;;; set default column width +;; set default column width (setq-default fill-column 80) ;; set cursor style to a vertical 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) (tool-bar-mode 0) (scroll-bar-mode 0)