-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
137 lines (112 loc) · 4.38 KB
/
init.el
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
;; Add the stable repository of Melpa to dw packages
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
;; Configures use-package
(eval-when-compile (require 'use-package))
;; Forces use-package to download unknown packages
(require 'use-package-ensure)
(setq use-package-always-ensure t)
;; Always display line numbers
(global-display-line-numbers-mode 1)
;; Always set fill size to be 80 chars
(setq-default fill-column 80)
;; Always refresh buffers when their content changes on disk
(global-auto-revert-mode t)
;; Always start emacs full screen
(add-to-list 'default-frame-alist '(fullscreen . maximized))
;; Searches and loads agda-mode
(load-file (let ((coding-system-for-read 'utf-8))
(shell-command-to-string "agda-mode locate")))
;; This allows the documentation to be displayed in minibuffer by default
;; or in a dedicated buffer when it is visible
(defun my/eldoc-display-in-buffer-or-minibuffer (&rest args)
(apply
(if (and eldoc--doc-buffer
(seq-some (lambda (w) (eq (window-buffer w) eldoc--doc-buffer)) (window-list)))
'eldoc-display-in-buffer
'eldoc-display-in-echo-area)
args))
(setq eldoc-display-functions '(my/eldoc-display-in-buffer-or-minibuffer))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Below everything is handled by yse-package ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Ensures all packages are kept up to date
(use-package auto-package-update
:config
(setq auto-package-update-delete-old-versions t)
(setq auto-package-update-hide-results t)
(auto-package-update-maybe))
;; Highlightning current and inner parentheses
(use-package highlight-parentheses
:init (show-paren-mode)
:config (global-highlight-parentheses-mode)
:custom ((highlight-parentheses-background-colors '("black"))
(Highlight-parentheses-colors '("red")))
:diminish)
;; Splitting vertically by default
(setq split-width-threshold 0)
;; Using doom-vibrant as default theme
;; This should me modified for Agda where it does not fit too well
(use-package doom-themes
:init
(load-theme 'doom-vibrant))
;; Attempt at improving Emacs' scroll behaviour
(setq redisplay-dont-pause t
scroll-margin 1
scroll-step 1
scroll-conservatively 10000
scroll-preserve-screen-position 1)
;; Tuareg mode for caml files
(use-package tuareg
:mode "\\.ml[iylp]?")
;; Yasnippet used globally. This is sometimes an issue
;; when tab is bound to several commands
(use-package yasnippet
:config (yas-global-mode t))
;; Haskell mode for .hs files
(use-package haskell-mode
:mode "\\.hs")
;; This is required to use the :diminish idiom in use-packages
;; which hides some packages in the lower emacs bar
(use-package diminish)
;; Using fira-code allows us to have nice ligatures, very
;; fancy in haskell for instance. This is useless in Agda though
;; where unicode is supported by default
(use-package fira-code-mode
:config (global-fira-code-mode)
:custom (fira-code-mode-disabled-ligatures '("x"))
:diminish)
;; Markdown for .md files. This is especially useful for documentation
;; buffers coming for language servers
(use-package markdown-mode)
;; Using company for Haskell, agda and lisp.
;; Will possibly become global in the futur
(use-package company
:hook ((haskell-mode agda2-mode emacs-lisp-mode) . company-mode))
;; Client for language servers, used for hls in this case.
;; This looks for a wrappers if any, and falls off to hls otherwise
;; in an attempt to find the right executable.
(use-package eglot
:hook (haskell-mode . eglot-ensure)
:bind (:map eglot-mode-map
("C-e e" . eldoc-doc-buffer)
("C-e o" . eglot-format-buffer)
("C-e d" . xref-find-definitions)
("C-e b" . xref-go-back)
("C-e f" . xref-go-forward)
("C-e n" . flymake-goto-next-error)
("C-e p" . flymake-goto-prev-error)
("C-e a" . eglot-code-actions)
("C-e r" . eglot-rename)
)
:config
(let ((hls (if (executable-find "haskell-language-server-wrapper") "haskell-language-server-wrapper" "haskell-language-server")))
(add-to-list 'eglot-server-programs `(haskell-mode ,hls "--lsp")))
:custom (eglot-confirm-server-initiated-edits nil)
)
;; This limits the number of buffers dired uses to a single one
;; Never quite understood why this is not the default behaviours
(use-package dired-single)
;; A simple mode for nix files.
(use-package nix-mode
:mode "\\.nix\\'")