- slack as wayland native application - google chrome is a wayland native application now - Emacs - `aggressive-indent` - `symex` - disabled `org-superstar-mode` - default `hunspell` dictionary is `en_US` now - glances - translate-shell - `qutebrowser` is the default browser now
15 lines
400 B
EmacsLisp
15 lines
400 B
EmacsLisp
(use-package symex
|
|
:custom
|
|
(symex-modal-backend 'evil)
|
|
:config
|
|
(symex-initialize)
|
|
(global-set-key (kbd "C-c s") 'symex-mode-interface)) ; or whatever keybinding you like
|
|
|
|
|
|
(use-package aggressive-indent
|
|
:commands (aggressive-indent-mode aggressive-indent-global-mode)
|
|
:hook
|
|
(emacs-lisp-mode . aggressive-indent-mode)
|
|
(lisp-mode . aggressive-indent-mode))
|
|
|
|
(provide 'config-lisp)
|