nicer completions
This commit is contained in:
parent
268c853783
commit
294be272ac
1 changed files with 6 additions and 4 deletions
10
init.el
10
init.el
|
@ -164,11 +164,13 @@
|
||||||
(define-key company-active-map (kbd "C-p") 'company-select-previous)
|
(define-key company-active-map (kbd "C-p") 'company-select-previous)
|
||||||
(define-key company-active-map (kbd "C-j") 'company-select-next)
|
(define-key company-active-map (kbd "C-j") 'company-select-next)
|
||||||
(define-key company-active-map (kbd "C-k") 'company-select-previous)
|
(define-key company-active-map (kbd "C-k") 'company-select-previous)
|
||||||
(setq company-idle-delay 0.2
|
(define-key company-search-map (kbd "C-n") 'company-select-next)
|
||||||
|
(define-key company-search-map (kbd "C-p") 'company-select-previous)
|
||||||
|
(define-key company-search-map (kbd "C-j") 'company-select-next)
|
||||||
|
(define-key company-search-map (kbd "C-k") 'company-select-previous)
|
||||||
|
(setq company-idle-delay 0.1
|
||||||
company-minimum-prefix-length 2
|
company-minimum-prefix-length 2
|
||||||
company-require-match nil
|
company-require-match nil)
|
||||||
company-dabbrev-ignore-case nil
|
|
||||||
company-dabbrev-downcase nil)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
;; lsp
|
;; lsp
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue