Compare commits
74 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b8adef76fb | |||
| 53aa91408c | |||
| 06208d5491 | |||
| 423acecb38 | |||
| 706b396e1c | |||
| b79d782623 | |||
| 8ba598127b | |||
| 4aeb92eb6f | |||
| c3a188defe | |||
| 0c18e02686 | |||
| 6a57cbfd1f | |||
| 015ed00b0f | |||
| 980ce6750b | |||
| 28b6168110 | |||
| c809f480bd | |||
| 3591e5704e | |||
| e6e5b5e461 | |||
| a79987f30f | |||
| 3f93a19d4b | |||
| 80b3e4dbc1 | |||
| 377a5cadff | |||
| adab1147e0 | |||
| 7f901b23ae | |||
| a731bab651 | |||
| 2572e8c221 | |||
| 6c24da4503 | |||
| f2dc1fe496 | |||
| 49a5164f45 | |||
| 22c029b2f4 | |||
| ff740ce08e | |||
| 1a21781fba | |||
| d3dc9465dd | |||
| f5ef8d68c5 | |||
| 0b57fa79b5 | |||
| c47c5a5185 | |||
| 17e062e07f | |||
| ede533e792 | |||
| 3853d9d247 | |||
| c8fa26b07b | |||
| 7252361ab1 | |||
| 275d07b961 | |||
| e692a9de93 | |||
| 28dae3bfeb | |||
| cea6f3f2c0 | |||
| 0e722c06b5 | |||
| 34e4462f1b | |||
| 2023ec08b3 | |||
| 7285b8750e | |||
| ad0adbc726 | |||
| 75bda91171 | |||
| a68f566cd9 | |||
| a5efd66ec7 | |||
| 40d9146a45 | |||
| d0657174dc | |||
| 3ad176fbf9 | |||
| 6aaae92c53 | |||
| 934c375c34 | |||
| 1521fcb13e | |||
| 21fbc47a8f | |||
| 1a99cb8ccb | |||
| ce1c827f4c | |||
| 62148f96ca | |||
| 8b1d672215 | |||
| e837ce7551 | |||
| f82e59591e | |||
| 83dc765086 | |||
| 1022956e46 | |||
| 32ddb062c0 | |||
| bbffcd8d2b | |||
| 6127374888 | |||
| 8a5527c2d4 | |||
| c5cebd2147 | |||
| 5ca1559c20 | |||
| 3c24cac0c1 |
12 changed files with 582 additions and 254 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -3,6 +3,11 @@ backups
|
|||
eshell
|
||||
elpaca
|
||||
|
||||
eln-cache
|
||||
elpa
|
||||
org-roam.db
|
||||
transient
|
||||
|
||||
# projectile
|
||||
projectile*
|
||||
|
||||
|
|
|
|||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -1,3 +0,0 @@
|
|||
[submodule "extra/sunrise-commander"]
|
||||
path = extra/sunrise-commander
|
||||
url = https://github.com/escherdragon/sunrise-commander
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
C-M-Space : smartparens wrapping
|
||||
C-c C-c : calculator (see init.el)
|
||||
C-h k <key-sequence>: lookup key sequence
|
||||
C-x 0 : close current window
|
||||
C-q <tab> : insert a <tab>
|
||||
M-x (un)tabify : (replace) tabs
|
||||
M-x describe-bindings : list of all mapped keys/commands
|
||||
M-p : fill-paragraph, works for doxygen as well
|
||||
760
config.org
760
config.org
File diff suppressed because it is too large
Load diff
|
|
@ -1,9 +1,18 @@
|
|||
;;; early-init.el --- Early Init -*- lexical-binding: t; -*-
|
||||
|
||||
;;; Commentary:
|
||||
;; Early init configuration for Emacs Solo
|
||||
;;
|
||||
|
||||
;;; Code:
|
||||
|
||||
|
||||
;; Only care about errors in *Messages* buffer
|
||||
(setq warning-minimum-level :error)
|
||||
|
||||
;; We control when packages are enabled
|
||||
(setq package-enable-at-startup nil)
|
||||
|
||||
(provide 'early-init)
|
||||
|
||||
;; Local Variables:
|
||||
;; no-byte-compile: t
|
||||
;; no-native-compile: t
|
||||
;; no-update-autoloads: t
|
||||
;; End:
|
||||
|
||||
;;; early-init.el ends here
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit cf8305a149a321d028858057e7a7c92f0038a06a
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 64 KiB |
16
init.el
16
init.el
|
|
@ -1,3 +1,12 @@
|
|||
;;; init.el --- Init -*- lexical-binding: t; -*-
|
||||
|
||||
|
||||
;;; Commentary:
|
||||
;;; Load init files
|
||||
|
||||
|
||||
;;; Code:
|
||||
|
||||
;;; Increase garbage collection threshold during init but leave it to the default value after
|
||||
;;; There are a LOT of articles/sites/... discussing this:
|
||||
;;; https://bling.github.io/blog/2016/01/18/why-are-you-changing-gc-cons-threshold/
|
||||
|
|
@ -11,6 +20,9 @@
|
|||
(when (file-readable-p my-config-file)
|
||||
(org-babel-load-file (expand-file-name my-config-file)))
|
||||
|
||||
(when (file-readable-p custom-file)
|
||||
(load custom-file))
|
||||
(load custom-file :no-error-if-file-is-missing)
|
||||
)
|
||||
|
||||
(provide 'init)
|
||||
|
||||
;;; init.el ends here
|
||||
|
|
|
|||
6
snippets/c-mode/kaboom
Normal file
6
snippets/c-mode/kaboom
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# -*- mode: snippet -*-
|
||||
# name: kaboom
|
||||
# key: kb
|
||||
# --
|
||||
|
||||
char (*__kaboom)[sizeof($1)] = 1;
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# -*- mode: snippet -*-
|
||||
# name: Lisp source code block
|
||||
# key: s>
|
||||
# name: Start emacs source block
|
||||
# key: se
|
||||
# --
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
|
|
|||
6
snippets/org-mode/filetags
Normal file
6
snippets/org-mode/filetags
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# -*- mode: snippet -*-
|
||||
# name: Filetags
|
||||
# key: ft
|
||||
# --
|
||||
|
||||
#+FILETAGS: :$1:
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
# -*- mode: snippet -*-
|
||||
# name: Start emacs source block
|
||||
# key: se>
|
||||
# name: Org source code block
|
||||
# key: s
|
||||
# --
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
#+BEGIN_SRC
|
||||
${1}
|
||||
#+END_SRC
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue