Various changes

This commit is contained in:
Case Duckworth 2021-01-05 11:54:09 -06:00
parent f9a7cafcb5
commit b934db00c8
2 changed files with 11 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#+EXPORT_FILE_NAME: README.md #+EXPORT_FILE_NAME: README.md
#+OPTIONS: toc:nil #+OPTIONS: toc:nil
#+BANKRUPTCY_COUNT: 3.2 #+BANKRUPTCY_COUNT: 3.2
#+Time-stamp: <2021-01-05 09:28:00 acdw> #+Time-stamp: <2021-01-05 11:52:00 acdw>
* Basics * Basics
@ -979,6 +979,12 @@ from [[https://www.reddit.com/r/emacs/comments/km9by4/weekly_tipstricketc_thread
"Update the X selection when rotating the kill ring.") "Update the X selection when rotating the kill ring.")
#+END_SRC #+END_SRC
**** Dont append the same thing twice to the kill-ring
#+BEGIN_SRC emacs-lisp
(cuss kill-do-not-save-duplicates t)
#+end_src
*** Searching & Replacing *** Searching & Replacing
**** COMMENT Search with CtrlF **** COMMENT Search with CtrlF
@ -1690,6 +1696,8 @@ Im only enabling this at home for now, since it requires building stuff.
;; Don't resize the frame when loading fonts ;; Don't resize the frame when loading fonts
(setq frame-inhibit-implied-resize t) (setq frame-inhibit-implied-resize t)
;; Resize frame by pixels
(setq frame-resize-pixelwise t)
#+end_src #+end_src
** Ease tangling and loading of Emacs' init ** Ease tangling and loading of Emacs' init

View File

@ -5,3 +5,5 @@
;; Don't resize the frame when loading fonts ;; Don't resize the frame when loading fonts
(setq frame-inhibit-implied-resize t) (setq frame-inhibit-implied-resize t)
;; Resize frame by pixels
(setq frame-resize-pixelwise t)