Skip to content

Commit

Permalink
remove elixir-ls from .emacs.d use system instead.
Browse files Browse the repository at this point in the history
Signed-off-by: EdmondFrank <EdmondFrank@hotmail.com>
  • Loading branch information
EdmondFrank committed Nov 1, 2023
1 parent 64e5554 commit 1327de2
Show file tree
Hide file tree
Showing 21 changed files with 17 additions and 141 deletions.
8 changes: 0 additions & 8 deletions elixir-ls-1.13/debugger.bat

This file was deleted.

23 changes: 0 additions & 23 deletions elixir-ls-1.13/debugger.sh

This file was deleted.

Binary file removed elixir-ls-1.13/docsh-0.7.2.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/elixir_ls_debugger-0.9.0.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/elixir_ls_utils-0.9.0.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/elixir_sense-2.0.0.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/erl2ex-0.0.10.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/erlex-0.2.6.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/getopt-1.0.1.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/jason_vendored-1.2.1.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/language_server-0.9.0.ez
Binary file not shown.
8 changes: 0 additions & 8 deletions elixir-ls-1.13/language_server.bat

This file was deleted.

23 changes: 0 additions & 23 deletions elixir-ls-1.13/language_server.sh

This file was deleted.

73 changes: 0 additions & 73 deletions elixir-ls-1.13/launch.sh

This file was deleted.

Binary file removed elixir-ls-1.13/path_glob_vendored-0.1.1.ez
Binary file not shown.
Binary file removed elixir-ls-1.13/providers-1.8.1.ez
Binary file not shown.
4 changes: 4 additions & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@
(setq ivy-rich-parse-remote-buffer nil)
(setq-default bidi-display-reordering nil)
(setq vc-handled-backends '(Git))
(setq bidi-inhibit-bpa t
long-line-threshold 1000
large-hscroll-threshold 1000
syntax-wholeline-max 1000)
;; (add-to-list 'load-path (expand-file-name "site-lisp/holo-layer" user-emacs-directory))
;; (require 'holo-layer)
;; (holo-layer-enable)
Expand Down
5 changes: 1 addition & 4 deletions lisp/init-elixir.el
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
:config
(use-package alchemist
:hook ((elixir-mode . alchemist-mode)
(elixir-mode . alchemist-phoenix-mode)))
(use-package eglot
:hook ((elixir-mode . eglot-ensure))
:init (add-to-list 'exec-path (expand-file-name "elixir-ls-1.13" user-emacs-directory))))
(elixir-mode . alchemist-phoenix-mode))))
(provide 'init-elixir)
;;; init-elixir.el ends here
4 changes: 3 additions & 1 deletion lisp/init-everywhere.el
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
emacs-everywhere-init-spell-check
emacs-everywhere-toggle-input-method))

(setq emacs-everywhere-final-hooks '())

(add-hook 'emacs-everywhere-mode-hook
(lambda ()
(define-key emacs-everywhere-mode-map (kbd "M-q") 'emacs-everywhere-finish-or-ctrl-c-ctrl-c)))
(define-key emacs-everywhere-mode-map (kbd "M-q") 'emacs-everywhere-finish)))

(provide 'init-everywhere)
;;; init-everywhere.el ends here
8 changes: 8 additions & 0 deletions lisp/init-lsp-bridge.el
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@
(setq acm-enable-tabnine nil)
(setq acm-enable-codeium t)

(setq acm-completion-backend-merge-order '("codeium-candidates"
"mode-first-part-candidates"
"template-first-part-candidates"
"tabnine-candidates"
"copilot-candidates"
"template-second-part-candidates"
"mode-second-part-candidates"))

(defun lsp-bridge-auto-mode ()
"Switch on/off lsp-bridge auto mode."
(interactive)
Expand Down

0 comments on commit 1327de2

Please sign in to comment.