mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
chore(completion): remove needless company-mode references
Since we enable global-company-mode, explicitly enabling it in the setup for various major modes does nothing. But it does tie the code to company mode, making it harder to try alternatives like corfu.
This commit is contained in:
@@ -6,7 +6,6 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(require 'siren-company)
|
||||
(require 'siren-dap)
|
||||
(require 'siren-folding)
|
||||
(require 'siren-lsp)
|
||||
@@ -63,7 +62,6 @@
|
||||
ruby-use-smie t
|
||||
tab-width 2)
|
||||
|
||||
(company-mode +1)
|
||||
(siren-folding)
|
||||
(subword-mode +1))
|
||||
|
||||
@@ -126,7 +124,8 @@
|
||||
|
||||
:init
|
||||
(defun siren-inf-ruby-mode-setup ()
|
||||
(company-mode -1))
|
||||
(if (fboundp 'company-mode)
|
||||
(company-mode -1)))
|
||||
|
||||
:config
|
||||
(unbind-key "C-c C-b" inf-ruby-minor-mode-map)
|
||||
|
||||
Reference in New Issue
Block a user