blob: cf77f5986c74e6fed873ccc09b13a727a722a3f2 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
;; Disable Backup Files
(setq make-backup-files nil)
;;; https://github.com/fimblo/dot.emacs
;;; Theme Activation
(load-theme 'misterioso)
(setq-default truncate-lines t)
;;; Disable Org Indent Mode
(add-hook 'org-mode-hook (lambda () (org-indent-mode -1)))
;;; Enable ParEdit
(add-hook 'prog-mode-hook 'enable-paredit-mode)
;;; 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-column 80
fill-column 80
auto-fill-function 'do-auto-fill)
(set-face-attribute 'fill-column-indicator nil :foreground "green")
(global-display-fill-column-indicator-mode)
;;; Enable Org Modern Style
;(with-eval-after-load 'org (global-org-modern-mode))
;; Prepare Literate Programming
(setq-default
org-startup-indented t
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 )))
(add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode))
;; Monospace Font in Ebook Reader
(setq-default nov-variable-pitch nil)
;; Disable Toolbar
(tool-bar-mode -1)
;; GNUS Configuration
;; (setq-default gnus-auto-select-first nil
;; gnus-select-method '(nnnil "")
;; gnus-secondary-select-methods '((nnimap "outlook"
;; (nnimap-address "outlook.office365.com")
;; (nnimap-server-port 993)
;; (nnimap-stream ssl)
;; (nnimap-authinfo-file "~/.authinfo"))
;; (nnimap "home"
;; (nnimap-address "serwer1930490.home.pl")
;; (nnimap-server-port 993)
;; (nnimap-stream ssl)
;; (nnimap-authinfo-file "~/.authinfo")))
;; nnmail-split-method 'nnmail-split-fancy
;; nnmail-split-fancy '(| "normal"))
;; (add-hook 'gnus-group-mode-hook 'gnus-topic-mode)
;; ORG-FC Configuration
(require 'org-fc-hydra)
(setq-default
org-fc-algorithm 'tn
org-fc-shuffle-positions nil
org-fc-directories '("~/Dokumenty/fiszki"))
;; Nix Mode
;; (require 'nix-mode)
;; (add-to-list 'auto-mode-alist '("\\.nix\\'" . nix-mode))
(setq tramp-remote-path
(append tramp-remote-path
'(tramp-own-remote-path
"~/.guix-profile/bin"
"~/.guix-profile/sbin"
"/run/current-system/profile/bin"
"/run/current-system/profile/sbin")))
|