core-keybinds: remove redundant quotes
This commit is contained in:
parent
fb5fbf69dc
commit
68e735938b
1 changed files with 12 additions and 12 deletions
|
@ -134,18 +134,18 @@ For example, :nvi will map to (list 'normal 'visual 'insert). See
|
||||||
|
|
||||||
|
|
||||||
;; Register keywords for proper indentation (see `map!')
|
;; Register keywords for proper indentation (see `map!')
|
||||||
(put ':after 'lisp-indent-function 'defun)
|
(put :after 'lisp-indent-function 'defun)
|
||||||
(put ':desc 'lisp-indent-function 'defun)
|
(put :desc 'lisp-indent-function 'defun)
|
||||||
(put ':leader 'lisp-indent-function 'defun)
|
(put :leader 'lisp-indent-function 'defun)
|
||||||
(put ':local 'lisp-indent-function 'defun)
|
(put :local 'lisp-indent-function 'defun)
|
||||||
(put ':localleader 'lisp-indent-function 'defun)
|
(put :localleader 'lisp-indent-function 'defun)
|
||||||
(put ':map 'lisp-indent-function 'defun)
|
(put :map 'lisp-indent-function 'defun)
|
||||||
(put ':map* 'lisp-indent-function 'defun)
|
(put :map* 'lisp-indent-function 'defun)
|
||||||
(put ':mode 'lisp-indent-function 'defun)
|
(put :mode 'lisp-indent-function 'defun)
|
||||||
(put ':prefix 'lisp-indent-function 'defun)
|
(put :prefix 'lisp-indent-function 'defun)
|
||||||
(put ':textobj 'lisp-indent-function 'defun)
|
(put :textobj 'lisp-indent-function 'defun)
|
||||||
(put ':unless 'lisp-indent-function 'defun)
|
(put :unless 'lisp-indent-function 'defun)
|
||||||
(put ':when 'lisp-indent-function 'defun)
|
(put :when 'lisp-indent-function 'defun)
|
||||||
|
|
||||||
;; specials
|
;; specials
|
||||||
(defvar doom--keymaps nil)
|
(defvar doom--keymaps nil)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue