Switch to regular find-file for now

This commit is contained in:
Curt Spark 2024-12-13 16:25:51 +00:00
parent 477c1b7b20
commit 60d3301557
1 changed files with 17 additions and 13 deletions

View File

@ -695,7 +695,11 @@ Install the package, enable it and ensure that it always is installed:
;; Remove commands that only work with key bindings ;; Remove commands that only work with key bindings
(put 'counsel-find-symbol 'no-counsel-M-x t) (put 'counsel-find-symbol 'no-counsel-M-x t)
:bind (("M-x" . counsel-M-x) :bind (("M-x" . counsel-M-x)
("C-x f" . counsel-find-file)
;; This doesnt work with lsp-bridge over TRAMP, i'll just disable for now.
;; ("C-x f" . counsel-find-file)
("C-x f" . find-file)
("s-f" . counsel-find-file) ("s-f" . counsel-find-file)
("s-F" . find-file-other-window) ("s-F" . find-file-other-window)
("C-x b" . ivy-switch-buffer) ("C-x b" . ivy-switch-buffer)