summaryrefslogtreecommitdiff
path: root/emacs.el
blob: 562cf004d3a98e901f3eb71d79a8da4547a2d1bc (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;;; Disable auto-backup
(setq-default make-backup-files nil)

;;; https://github.com/fimblo/dot.emacs
;;; Theme Activation
(load-theme 'manoj-dark)

;;; https://elpa.gnu.org/packages/aggressive-indent.html
;;; Automatic Activation of Aggressive Indent
(global-aggressive-indent-mode)

;; Highlight the pair of delimiters under the cursor
(setq-default show-paren-mode 1
	      show-paren-delay 0)

;;; https://guix.gnu.org/manual/en/html_node/The-Perfect-Setup.html
;;; Copyright Information
(setq-default user-full-name "Marek Paśnikowski"
	      user-mail-address "marekpasnikowski@protonmail.com")

;;; Startup Screen Inhibition
(setq-default inhibit-startup-screen t)

;; Enable the column-80 line
(setq-default display-fill-column-indicator 1
	      display-fill-column-indicator-column 79)
(global-display-fill-column-indicator-mode)

;; Prepare Literate Programming
(setq-default org-confirm-babel-evaluate nil
	      org-src-fontify-natively t
	      org-src-tab-acts-natively t)
(org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t)
							 (scheme . t )
							 (shell . t )))