aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el15
1 files changed, 13 insertions, 2 deletions
diff --git a/init.el b/init.el
index 0a30c3d..14055be 100644
--- a/init.el
+++ b/init.el
@@ -609,8 +609,7 @@
609(use-package link-hint 609(use-package link-hint
610 :straight t 610 :straight t
611 :bind 611 :bind
612 ("C-c l o" . link-hint-open-link) 612 ("C-c n l o" . link-hint-open-link))
613 ("C-c l c" . link-hint-copy-link))
614 613
615 614
616;; --------------------------------- 615;; ---------------------------------
@@ -811,6 +810,18 @@
811 :init (global-flycheck-mode)) 810 :init (global-flycheck-mode))
812 811
813 812
813;; ---------------------------------
814;; Language Server Protocol (LSP)
815;; ------------------------------
816;; Protocol for interaction between
817;; Emacs and language servers.
818;; ---------------------------------
819
820(use-package lsp-mode
821 :straight t
822 :init (setq lsp-keymap-prefix "C-c l"))
823
824
814 825
815 826
816;; --------------------------------------------------------------------- 827;; ---------------------------------------------------------------------