diff options
-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) |