diff options
author | jao <jao@gnu.org> | 2021-05-15 00:27:36 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-05-15 00:27:36 +0100 |
commit | e33b64bfd2c4c06692c8183a2450ffca099e955e (patch) | |
tree | b9f47b69300cfe7f320f03e469a2ce5d21f1ca46 | |
parent | 4663063746d94a1605ddcec7dbb5ec9f58f0a9ff (diff) | |
download | elibs-e33b64bfd2c4c06692c8183a2450ffca099e955e.tar.gz elibs-e33b64bfd2c4c06692c8183a2450ffca099e955e.tar.bz2 |
nits
-rw-r--r-- | init.org | 21 |
1 files changed, 5 insertions, 16 deletions
@@ -967,10 +967,6 @@ :bind (:map dired-mode-map (")" . dired-git-info-mode))) #+END_SRC * General editing -*** Completion - #+begin_src emacs-lisp - (jao-load-org "completion") - #+end_src *** Long lines [[https://200ok.ch/posts/2020-09-29_comprehensive_guide_on_handling_long_lines_in_emacs.html][Comprehensive guide on handling long lines in Emacs - 200ok]] #+begin_src emacs-lisp @@ -1026,13 +1022,16 @@ (global-set-key "\C-ce" 'fc-eval-and-replace) #+END_SRC +*** Completion + #+begin_src emacs-lisp + (jao-load-org "completion") + #+end_src * Buffers *** cursor and mark #+begin_src emacs-lisp (transient-mark-mode -1) - (setq cursor-in-non-selected-windows nil - cursor-type '(box . 24)) ; become hollow on images of size > 24 (blink-cursor-mode -1) + (setq cursor-in-non-selected-windows nil) #+end_src *** uniquifiy #+begin_src emacs-lisp @@ -2658,16 +2657,6 @@ #+BEGIN_SRC emacs-lisp (use-package bluetooth :ensure t) #+END_SRC -*** Enwc (network monitor) - #+BEGIN_SRC emacs-lisp - (use-package enwc - :ensure t - :init (setq enwc-default-backend 'nm - enwc-backend 'nm - enwc-display-mode-line nil - enwc-wired-device "enp3s0f0" - enwc-wireless-device "wlp1s0")) - #+END_SRC *** Proton #+BEGIN_SRC emacs-lisp (require 'jao-proton-utils) |