1
0
Fork 0

[oni-lsp] Remove ivy dependency

This commit is contained in:
Tom Willemse 2022-03-18 11:09:34 -07:00
parent 3ef86655f1
commit 4e73acbae8

View file

@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org> ;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local ;; Keywords: local
;; Version: 2022.0228.013837 ;; Version: 2022.0318.110741
;; Package-Requires: (lsp-mode lsp-ui lsp-ivy) ;; Package-Requires: (lsp-mode lsp-ui)
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by ;; it under the terms of the GNU General Public License as published by
@ -30,7 +30,6 @@
;;; Code: ;;; Code:
(require 'lsp) (require 'lsp)
(require 'lsp-ivy)
(require 'lsp-ui) (require 'lsp-ui)
(defun oni-lsp-show-doc () (defun oni-lsp-show-doc ()
@ -52,9 +51,6 @@
(setq lsp-ui-doc-enable nil) (setq lsp-ui-doc-enable nil)
(setq lsp-ui-sideline-enable nil) (setq lsp-ui-sideline-enable nil)
(define-key lsp-mode-map (kbd "C-c s") 'lsp-ivy-workspace-symbol)
(define-key lsp-mode-map (kbd "C-c S") 'lsp-ivy-global-workspace-symbol)
(add-hook 'lsp-mode-hook 'lsp-lens-mode) (add-hook 'lsp-mode-hook 'lsp-lens-mode)
(provide 'oni-lsp) (provide 'oni-lsp)