diff options
author | Raúl Benencia <id@rbenencia.name> | 2023-08-02 22:48:39 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2023-08-02 22:48:39 -0700 |
commit | 0ce0bf890ae532f5aee46d158a28b85d03a6366a (patch) | |
tree | 7d5479487e2117dbcc36fbb89409d5516207dbc9 /.emacs.d/rul-init.d/company.el | |
parent | 99f94753f336013d46c6f391e73ac94455c7e88c (diff) |
emacs: drop unused files
Diffstat (limited to '.emacs.d/rul-init.d/company.el')
-rw-r--r-- | .emacs.d/rul-init.d/company.el | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/.emacs.d/rul-init.d/company.el b/.emacs.d/rul-init.d/company.el deleted file mode 100644 index d52000e..0000000 --- a/.emacs.d/rul-init.d/company.el +++ /dev/null @@ -1,42 +0,0 @@ -(use-package company - :ensure t - :defer t - :init (global-company-mode) - :config - (progn - ;; Use Company for completion - (bind-key [remap completion-at-point] #'company-complete company-mode-map) - - (setq company-tooltip-align-annotations t - ;; Easy navigation to candidates with M-<n> - company-show-numbers t) - (setq company-dabbrev-downcase nil)) - - (setq company-idle-delay 0) - (setq company-minimum-prefix-length 1) - :diminish company-mode) - -(use-package company-quickhelp ; Documentation popups for Company - :ensure t - :defer t - :init (add-hook 'global-company-mode-hook #'company-quickhelp-mode)) - -(use-package company-go - :ensure t - :defer t - :init - (with-eval-after-load 'company - (add-to-list 'company-backends 'company-go))) - -(use-package company-lsp - :ensure t - :commands company-lsp) - -(use-package yasnippet - :ensure t - :config - (yas-global-mode 1) - (global-set-key (kbd "C-c y") 'company-yasnippet)) - -(use-package yasnippet-snippets - :ensure t) |