Compare commits
2 commits
75bda91171
...
7285b8750e
| Author | SHA1 | Date | |
|---|---|---|---|
| 7285b8750e | |||
| ad0adbc726 |
2 changed files with 10 additions and 0 deletions
|
|
@ -269,6 +269,12 @@ Make cursor the width of the character it is under f.e. full width of a tab.
|
|||
(setq x-stretch-cursor t)
|
||||
#+END_SRC
|
||||
|
||||
** Enable auto-revert
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq global-auto-revert-mode 1)
|
||||
#+END_SRC
|
||||
|
||||
* Resize-mode
|
||||
|
||||
Minor-mode to easily resize frames (works with EXWM (firefox, ...)).
|
||||
|
|
|
|||
4
init.el
4
init.el
|
|
@ -7,10 +7,14 @@
|
|||
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
|
||||
;; This is the actual config file. It is omitted if it doesn't exist so emacs won't refuse to launch.
|
||||
(defvar my-config-file (expand-file-name "config.org" user-emacs-directory))
|
||||
(defvar notes-config-file (expand-file-name "init.el" "~/projects/notes/"))
|
||||
|
||||
(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))
|
||||
|
||||
(when (file-readable-p notes-config-file)
|
||||
(load notes-config-file))
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue