StumpWM and ENWC config

This commit is contained in:
Jeremy Dormitzer 2019-05-04 12:36:32 -04:00
parent a506dec0cf
commit 359d2ccd2e

View File

@ -2857,3 +2857,21 @@ The aws-mfa command:
(leader-def-key "ao" #'op-copy-password)
#+END_SRC
* StumpWM
A handy keybinding to connect to the StumpWM SBCL process via SLIME:
#+BEGIN_SRC emacs-lisp
(defun connect-stumpwm ()
(interactive)
(slime-connect "127.0.0.1" 4004))
#+END_SRC
* Emacs Network Client
Emacs frontend for networkmanager.
#+BEGIN_SRC emacs-lisp
(use-package enwc
:config
(setq enwc-default-backend 'nm)
(add-to-list 'evil-emacs-state-modes 'enwc-mode)
(general-def enwc-mode-map "SPC" leader-map)
(leader-def-key "an" #'enwc)
:commands (enwc))
#+END_SRC