-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlispscratch.lispinteraction
66 lines (45 loc) · 2.37 KB
/
lispscratch.lispinteraction
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
; replace-smart-to-ascii <- for curly braces
(set-face-attribute 'default nil :font "Ubuntu Mono 13")
(set-face-attribute 'default nil :font "Cascadia Mono 12")
(setq mygrep-rootdir "/opt/sb/")
(setq mygrep-command "lsfg ")
(emacs-version)
(setq Buffer-menu-name-width 32)
(setq sort-fold-case nil)
(setq sort-fold-case t) ; to make sort-lines ignore upper/lower case
; when editing something in emacs, a file starting with .# (dot + hashtag) is created.
; what is this file? answer: These are lock files, they prevent any other Emacs
; session from editing a file that has unsaved changes.
(setq create-lockfiles nil)
(setq create-lockfiles t)
; ---------- GOLANG ----------
(add-hook 'before-save-hook 'gofmt-before-save)
(remove-hook 'before-save-hook 'gofmt-before-save)
; ---------- QML QML QML ----------
(add-hook 'after-save-hook 'qmlfmt-hook)
(remove-hook 'after-save-hook 'qmlfmt-hook)
; ---------- SQL ----------
(add-hook 'after-save-hook 'sqlfmt-hook)
(remove-hook 'after-save-hook 'sqlfmt-hook)
; ---------- CPP CLANG-FORMAT ----------
(add-hook 'before-save-hook 'clang-format-before-save)
(add-hook 'before-save-hook 'untabify-conditionally)
(remove-hook 'before-save-hook 'clang-format-before-save)
(remove-hook 'before-save-hook 'untabify-conditionally)
(setq clang-format-executable "clang-format-853728353")
; https://prereleases.llvm.org/win-snapshots/
(setq clang-format-executable "C:\\Users\\username\\Downloads\\clang-format-r375090.exe")
(setq clang-format-executable "clang-format-6.0")
(setq clang-format-executable "clang-format-3.8")
; ---------- PYTHON YAPF ----------
(add-hook 'python-mode-hook 'py-yapf-enable-on-save)
(remove-hook 'python-mode-hook 'py-yapf-enable-on-save)
; ---------- PYTHON autopepeight ----------
(add-hook 'after-save-hook 'autopepeight-hook)
(remove-hook 'after-save-hook 'autopepeight-hook)
(setq cc-search-directories '("." "../Src" "../Src/*" "../Inc" "../Inc/*" "../../Src" "../../Src/*" "../../Inc" "../../Inc/*" "/usr/include" "/usr/local/include/*"))
(setq mybuild-dir "/home/someone/proj/")
(setq mybuild-command "./build.sh") ; rm humbledrive1 ; go build -gcflags=all="-N -l" humbledrive1.go
(setq mybuild-dir "/home/username/mygo/someproject/") ; contains build.sh
(setq mybuild-command "C:\\Users\\username\\repositories\\wnmk.bat")
(setq mybuild-dir "C:\\Users\\username\\repositories\\qt-qml-project-template-with-ci\\build\\")