summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-01-05 11:54:09 -0600
committerCase Duckworth2021-01-05 11:55:16 -0600
commitb934db00c8c5d2c11eca31bd40e8f3c236d2c7f8 (patch)
tree27a4aa4c5f88d643c143cf24785cd6296ad8e2f4
parentConfigure org-mode (diff)
downloademacs-b934db00c8c5d2c11eca31bd40e8f3c236d2c7f8.tar.gz
emacs-b934db00c8c5d2c11eca31bd40e8f3c236d2c7f8.zip
Various changes
-rw-r--r--config.org10
-rw-r--r--early-init.el2
2 files changed, 11 insertions, 1 deletions
diff --git a/config.org b/config.org index f37248e..4a9a9af 100644 --- a/config.org +++ b/config.org
@@ -5,7 +5,7 @@
5#+EXPORT_FILE_NAME: README.md 5#+EXPORT_FILE_NAME: README.md
6#+OPTIONS: toc:nil 6#+OPTIONS: toc:nil
7#+BANKRUPTCY_COUNT: 3.2 7#+BANKRUPTCY_COUNT: 3.2
8#+Time-stamp: <2021-01-05 09:28:00 acdw> 8#+Time-stamp: <2021-01-05 11:52:00 acdw>
9 9
10* Basics 10* Basics
11 11
@@ -979,6 +979,12 @@ from [[https://www.reddit.com/r/emacs/comments/km9by4/weekly_tipstricketc_thread
979 "Update the X selection when rotating the kill ring.") 979 "Update the X selection when rotating the kill ring.")
980#+END_SRC 980#+END_SRC
981 981
982**** Don’t append the same thing twice to the kill-ring
983
984 #+BEGIN_SRC emacs-lisp
985 (cuss kill-do-not-save-duplicates t)
986 #+end_src
987
982*** Searching & Replacing 988*** Searching & Replacing
983 989
984**** COMMENT Search with CtrlF 990**** COMMENT Search with CtrlF
@@ -1690,6 +1696,8 @@ I’m only enabling this at home for now, since it requires building stuff.
1690 1696
1691 ;; Don't resize the frame when loading fonts 1697 ;; Don't resize the frame when loading fonts
1692 (setq frame-inhibit-implied-resize t) 1698 (setq frame-inhibit-implied-resize t)
1699 ;; Resize frame by pixels
1700 (setq frame-resize-pixelwise t)
1693#+end_src 1701#+end_src
1694 1702
1695** Ease tangling and loading of Emacs' init 1703** Ease tangling and loading of Emacs' init
diff --git a/early-init.el b/early-init.el index b5fb787..fc19618 100644 --- a/early-init.el +++ b/early-init.el
@@ -5,3 +5,5 @@
5 5
6;; Don't resize the frame when loading fonts 6;; Don't resize the frame when loading fonts
7(setq frame-inhibit-implied-resize t) 7(setq frame-inhibit-implied-resize t)
8;; Resize frame by pixels
9(setq frame-resize-pixelwise t)