-
Notifications
You must be signed in to change notification settings - Fork 2
/
.dir-locals.el
28 lines (27 loc) · 889 Bytes
/
.dir-locals.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
;;; Directory Local Variables -*- no-byte-compile: t -*-
;;; For more information see (info "(emacs) Directory Variables")
((nil . ((eval . (define-skeleton
bf-error-skeleton
"Inserts an error handling section delimited by
calls to BF_ERROR_BEGIN and BF_ERROR_END."
nil
\n > "BF_ERROR_BEGIN();"
\n >
\n > _
\n >
\n > "BF_ERROR_END() {"
\n > "BF_DIE();"
\n > "}" >))
(projectile-indexing-method . native)))
(c++-mode . ((indent-tabs-mode . nil)
(c-basic-offset . 2)
(comment-style . multi-line)))
(c-mode . ((indent-tabs-mode . nil)
(c-basic-offset . 2)
(comment-style . multi-line)
(visual-line-mode . t)
(visual-fill-column-mode . nil)
(adaptive-wrap-prefix-mode . t)
(adaptive-wrap-extra-indent . 4)))
(python-mode . ((subword-mode)))
(cython-mode . ((subword-mode))))