481df5a385
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
24 lines
637 B
EmacsLisp
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
|