summary refs log tree commit diff
path: root/emacs.d/modules/module-codestyle.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/modules/module-codestyle.el')
-rw-r--r--emacs.d/modules/module-codestyle.el18
1 files changed, 0 insertions, 18 deletions
diff --git a/emacs.d/modules/module-codestyle.el b/emacs.d/modules/module-codestyle.el
deleted file mode 100644
index 05369a7..0000000
--- a/emacs.d/modules/module-codestyle.el
+++ /dev/null
@@ -1,18 +0,0 @@
-(setq show-paren-delay 0)
-
-;; turn off tab indentation
-(setq-default indent-tabs-mode nil)
-
-;; when saving the file, ensure a newline exists at the end of the file
-(setq require-final-newline t)
-
-(use-package whitespace
-  ;; highlight white spaces
-  :config
-  (setq whitespace-style '(face trailing))
-  (add-hook 'prog-mode-hook 'whitespace-mode))
-
-(add-hook 'prog-mode-hook
-          (lambda () (setq show-trailing-whitespace t)))
-
-(provide 'module-codestyle)