mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 22:16:30 +00:00
8 lines
184 B
Common Lisp
8 lines
184 B
Common Lisp
|
(in-package :next-user)
|
||
|
|
||
|
(defclass my-buffer (buffer)
|
||
|
((default-modes :initform
|
||
|
(cons 'vi-normal-mode (get-default 'buffer 'default-modes)))))
|
||
|
|
||
|
(setf *buffer-class* 'my-buffer)
|