tvl-depot/configs/shared/emacs/.emacs.d/wpc/packages/wpc-company.el
William Carroll 481df5a385 Remove Emacs spam
My inconsistent git history-keeping is coming to bite me here. At the
moment, I can only speculate about what went wrong here. The gist is
this: I unintentionally committed files that were supposed to be ignored

This commit removes those files which includes:

- auto-save-list
- elpa packages
- quelpa packages
- misc
2019-01-13 14:45:14 -05:00

24 lines
637 B
EmacsLisp

;;; company.el --- Autocompletion package, company, preferences -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;;; Commentary:
;; Hosts my company mode preferences
;;; Code:
;; autocompletion client
(use-package company
:config
(general-define-key
:keymaps 'company-active-map
"C-j" #'company-select-next
"C-n" #'company-select-next
"C-k" #'company-select-previous
"C-p" #'company-select-previous
"C-d" #'company-show-doc-buffer)
(setq company-idle-delay 0)
(setq company-minimum-prefix-length 2)
(global-company-mode))
(provide 'wpc-company)
;;; wpc-company.el ends here