aboutsummaryrefslogtreecommitdiffstats
path: root/oni-lsp.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-03-18 11:09:34 -0700
committerGravatar Tom Willemse2022-03-18 11:09:34 -0700
commit4e73acbae8d8984e0e3ad01987c95e6f65053272 (patch)
treed993757fdda7191b28310ec7735e9e431dc3d5e7 /oni-lsp.el
parent3ef86655f193c4550896fb10fdaf086425dcd8a6 (diff)
downloademacs-config-4e73acbae8d8984e0e3ad01987c95e6f65053272.tar.gz
emacs-config-4e73acbae8d8984e0e3ad01987c95e6f65053272.zip
[oni-lsp] Remove ivy dependency
Diffstat (limited to 'oni-lsp.el')
-rw-r--r--oni-lsp.el8
1 files changed, 2 insertions, 6 deletions
diff --git a/oni-lsp.el b/oni-lsp.el
index 4ffc0e2..591f30b 100644
--- a/oni-lsp.el
+++ b/oni-lsp.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2022.0228.013837
-;; Package-Requires: (lsp-mode lsp-ui lsp-ivy)
+;; Version: 2022.0318.110741
+;; Package-Requires: (lsp-mode lsp-ui)
;; 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
@@ -30,7 +30,6 @@
;;; Code:
(require 'lsp)
-(require 'lsp-ivy)
(require 'lsp-ui)
(defun oni-lsp-show-doc ()
@@ -52,9 +51,6 @@
(setq lsp-ui-doc-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)
(provide 'oni-lsp)