Compare commits

..

No commits in common. "master" and "unclutter" have entirely different histories.

12 changed files with 255 additions and 583 deletions

5
.gitignore vendored
View file

@ -3,11 +3,6 @@ backups
eshell eshell
elpaca elpaca
eln-cache
elpa
org-roam.db
transient
# projectile # projectile
projectile* projectile*

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "extra/sunrise-commander"]
path = extra/sunrise-commander
url = https://github.com/escherdragon/sunrise-commander

8
cheat-sheet.txt Normal file
View file

@ -0,0 +1,8 @@
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

File diff suppressed because it is too large Load diff

View file

@ -1,18 +1,9 @@
;;; 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) (setq package-enable-at-startup nil)
(provide 'early-init)
;;; early-init.el ends here ;; Local Variables:
;; no-byte-compile: t
;; no-native-compile: t
;; no-update-autoloads: t
;; End:

@ -0,0 +1 @@
Subproject commit cf8305a149a321d028858057e7a7c92f0038a06a

BIN
img/dash_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

16
init.el
View file

@ -1,12 +1,3 @@
;;; 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 ;;; Increase garbage collection threshold during init but leave it to the default value after
;;; There are a LOT of articles/sites/... discussing this: ;;; There are a LOT of articles/sites/... discussing this:
;;; https://bling.github.io/blog/2016/01/18/why-are-you-changing-gc-cons-threshold/ ;;; https://bling.github.io/blog/2016/01/18/why-are-you-changing-gc-cons-threshold/
@ -20,9 +11,6 @@
(when (file-readable-p my-config-file) (when (file-readable-p my-config-file)
(org-babel-load-file (expand-file-name my-config-file))) (org-babel-load-file (expand-file-name my-config-file)))
(load custom-file :no-error-if-file-is-missing) (when (file-readable-p custom-file)
(load custom-file))
) )
(provide 'init)
;;; init.el ends here

View file

@ -1,6 +0,0 @@
# -*- mode: snippet -*-
# name: kaboom
# key: kb
# --
char (*__kaboom)[sizeof($1)] = 1;

View file

@ -1,6 +1,6 @@
# -*- mode: snippet -*- # -*- mode: snippet -*-
# name: Start emacs source block # name: Lisp source code block
# key: se # key: s>
# -- # --
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp

View file

@ -1,6 +0,0 @@
# -*- mode: snippet -*-
# name: Filetags
# key: ft
# --
#+FILETAGS: :$1:

View file

@ -1,8 +1,8 @@
# -*- mode: snippet -*- # -*- mode: snippet -*-
# name: Org source code block # name: Start emacs source block
# key: s # key: se>
# -- # --
#+BEGIN_SRC #+BEGIN_SRC emacs-lisp
${1} ${1}
#+END_SRC #+END_SRC