diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-03 04:44:06 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-03 04:45:13 +0100 |
commit | cd70e6fec0cdd434382edb853f38d3dd948a1c17 (patch) | |
tree | ba091b24320e261c3504bc2e1fc86bf4ea6975de /Emacs/.config/emacs | |
parent | 6049484c77382bb740e2937dc5a2e87d83bddc41 (diff) | |
download | dotfiles-cd70e6fec0cdd434382edb853f38d3dd948a1c17.tar.gz dotfiles-cd70e6fec0cdd434382edb853f38d3dd948a1c17.tar.bz2 dotfiles-cd70e6fec0cdd434382edb853f38d3dd948a1c17.zip |
(Emacs/config)~Fix license at start of config.el
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 020bb44..4d16ff3 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -23,14 +23,18 @@ code: ;; Author: Aryadev Chavali <aryadev@aryadevchavali.com> -;; You may distribute and modify this code under the terms of the MIT -;; license. You should have received a copy of the MIT license with -;; this file. If not, please write to: aryadev@aryadevchavali.com. +;; This program is distributed in the hope that it will be useful, but WITHOUT +;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +;; FOR A PARTICULAR PURPOSE. See the MIT License for details. + +;; You may distribute and modify this code under the terms of the MIT License, +;; which you should have received a copy of along with this program. If not, +;; please go to <https://opensource.org/license/MIT>. ;;; Commentary: -;; Welcome to my Emacs configuration. This file is considered -;; volatile i.e. any edits made to this file will be overwritten if -;; and when the configuration is compiled again. +;; Welcome to my Emacs configuration. This file is considered volatile i.e. any +;; edits made to this file will be overwritten if and when the configuration is +;; compiled again. ;; To propagate edits from this file to the literate document, call ;; (org-babel-detangle). @@ -415,12 +419,10 @@ the borders for Emacs, so called fringes. (fringe-mode 0)) #+end_src ** Mouse -Who uses a mouse? 🤮 - -This disables the use of GUI dialogues for stuff. +Who uses a mouse? This disables the use of GUI dialogues for stuff. #+begin_src emacs-lisp - (setq-default use-file-dialog nil - use-dialog-box nil) +(setq-default use-file-dialog nil + use-dialog-box nil) #+end_src ** Scrolling Emacs can automatically scroll the buffer depending on how many lines |