;; Functions ------------------------------------------------- ;; Quick fix for company-mode and yasnippet clashing (defun company-yasnippet-or-completion () (interactive) (if (yas/expansion-at-point) (progn (company-abort) (yas/expand)) (company-complete-common))) (defun yas/expansion-at-point () "Tested with v0.6.1. Extracted from `yas/expand-1'" (first (yas/current-key))) ;;;###autoload (defun extension/development-initialize () "Development plugin initialization." (message "Initializing 'development' extension.") (ability code-completion () "Use company mode to provides a complete auto completion framwork." (require 'company) (global-company-mode t) ;; Bigger popup window (setq company-tooltip-limit 20) ;; Align annotations to the right tooltip border (setq company-tooltip-align-annotations 't) ;; Decrease delay before autocompletion popup shows (setq company-idle-delay 0.3) ;; Start autocompletion only after typing (setq company-begin-commands '(self-insert-command)) ;; Force complete file names on "C-c /" key (global-set-key (kbd "C-c /") 'company-files) (add-hook 'after-init-hook 'company-statistics-mode) (define-key company-active-map "\t" 'company-yasnippet-or-completion)) (ability yas () "Snippet configuration." (yas-global-mode 1)) (ability project-management () "Ability to manage projects and project navigation." (projectile-global-mode) (setq projectile-enable-caching t)) (ability flycheck () "Check syntax on the fly using flycheck." (add-hook 'after-init-hook 'global-flycheck-mode)) (ability spell () "Check spell of any word using ispell." (require 'flyspell) (setq flyspell-issue-message-flg nil)) (ability diff-highlight "Highlight the diffs based on VCS." (add-hook 'prog-mode-hook 'turn-on-diff-hl-mode) (add-hook 'vc-dir-mode-hook 'turn-on-diff-hl-mode)) (ability auto-pair "Auto pair stuffs like brackets begin/ends etc." ;; TODO: use autopair mode if electric pair was not as good as autopair (electric-pair-mode)) (ability indent-guide "Show indent guides." (indent-guide-global-mode) (set-face-foreground 'indent-guide-face "#bbb"))) (provide 'extensions/development/init)