Add finally working company
This commit is contained in:
parent
c59eb1ceb8
commit
a9cf902017
7 changed files with 105 additions and 54 deletions
13
behaviour.el
13
behaviour.el
|
|
@ -138,12 +138,21 @@
|
|||
|
||||
; Add completion
|
||||
(require 'company)
|
||||
(add-hook 'after-init-hook 'global-company-mode)
|
||||
(setq company-tooltip-limit 10)
|
||||
(setq company-tooltip-limit 30)
|
||||
(setq company-tooltip-minimum-width 40)
|
||||
(setq company-idle-delay .1)
|
||||
(setq company-begin-commands '(self-insert-command))
|
||||
(setq company-selection-wrap-around t)
|
||||
|
||||
(setq company-backends
|
||||
'((company-files ; files & directory
|
||||
company-keywords ; keywords
|
||||
company-capf
|
||||
company-yasnippet
|
||||
)
|
||||
(company-abbrev company-dabbrev)
|
||||
))
|
||||
|
||||
; Add project management
|
||||
(require 'projectile)
|
||||
(projectile-mode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue