feat(emacs-evil): Make emacs look like a Vim

This commit is contained in:
js0ny 2025-01-29 01:23:33 +00:00
parent 5dc5ba0c5f
commit ffcc8fb768
8 changed files with 114 additions and 8 deletions

View file

@ -0,0 +1,13 @@
;;; init-lsp.el
;;; First edit on 2025/01/29
;;; Stores Language Server Protocol Configs
;;; FIXME: Cannot install `lsp-mode` plugin, this file will not be loaded by Emacs for now
(use-package lsp-mode
:commands (lsp lsp-deferred)
:hook (prog-mode . lsp-deferred))
;; (setq package-check-signature t)
(provide 'init-lsp)
;;; init-lsp.el ends