From 50bc7230ad8780d4d037ad66581d40e87a9dad8d Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Wed, 30 Nov 2022 02:38:10 +0200 Subject: Restracture and organize downloads --- .emacs.d/lisp/my-functions.el | 45 ------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .emacs.d/lisp/my-functions.el (limited to '.emacs.d/lisp/my-functions.el') diff --git a/.emacs.d/lisp/my-functions.el b/.emacs.d/lisp/my-functions.el deleted file mode 100644 index 85eb60a..0000000 --- a/.emacs.d/lisp/my-functions.el +++ /dev/null @@ -1,45 +0,0 @@ -;;; package --- Summary -;;; Commentary: -;;; useful snippets of code for my daily use. -;;; Code: - - -(defun apollo/html-boostrap-boilerplate () - "Insert html boilerplate with boostrap link." - (interactive) - (insert -" - - - - - - My Title - - - - -
-

Starting point

-
- - -" )) - -(defun center-buffer () - "Center buffer." - (interactive) - (setq visual-fill-column-width 100 - visual-fill-column-center-text t) - (visual-fill-column-mode 1)) - -(defun center-buffer-undo () - "Undo center-buffer." - (interactive) - (setq visual-fill-column-width 2000 - visual-fill-column-center-text nil) - (visual-fill-column-mode 1)) - - -;;; my-functions.el ends here - -- cgit v1.2.3