-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.dir-locals.el
90 lines (90 loc) · 2.14 KB
/
.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
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
((nil .
((indent-tabs-mode . nil)
(require-final-newline . t)))
(clojure-mode .
((eval .
(progn
(define-clojure-indent
(>def 1)
(>defn 1)
(a 1)
(action 1)
(ANY 2)
(behavior 1)
(button 1)
(code 1)
(concat-when 1)
(debug 1)
(defroutes 'defun)
(describe 1)
(div 1)
(dd 1)
(DELETE 2)
(dl 1)
(error-action 1)
(fine 1)
(finer 1)
(finest 1)
(footer 1)
(form 1)
(HEAD 2)
(GET 2)
(get-initial-state 1)
(h1 1)
(h2 1)
(info 1)
(input 1)
(it 1)
(li 1)
(nav 1)
(ok-action 1)
(OPTIONS 2)
(p 1)
(page-merger 1)
(PATCH 2)
(POST 2)
(PUT 2)
(remote 1)
(route-deferred 1)
(select 1)
(span 1)
(specification 1)
(table 1)
(tbody 1)
(td 1)
(thead 1)
(tr 1)
(trace 1)
(transact! 1)
(ui-breadcrumb 1)
(ui-breadcrumb-section 1)
(ui-breadcrumbs 1)
(ui-button-group 1)
(ui-container 1)
(ui-form 1)
(ui-form-field 1)
(ui-grid 1)
(ui-grid-column 1)
(ui-grid-row 1)
(ui-header 1)
(ui-list 1)
(ui-list-content 1)
(ui-list-item 1)
(ui-list-list 1)
(ui-menu 1)
(ui-menu-menu 1)
(ui-modal 1)
(ui-modal-content 1)
(ui-moment 1)
(ui-segment 1)
(ui-sidebar-pushable 1)
(ui-sidebar-pusher 1)
(ui-table 1)
(ui-table-body 1)
(ui-table-cell 1)
(ui-table-header 1)
(ui-table-header-cell 1)
(ui-table-row 1)
(ul 1))))
(clojure-align-forms-automatically t)
(clojure-indent-style . always-align))))