Use Ctags in a better way
This commit is contained in:
parent
251b43137d
commit
076c3af253
2 changed files with 7 additions and 2 deletions
|
|
@ -42,6 +42,9 @@
|
|||
;; When possible, show code documentation
|
||||
(global-eldoc-mode 1)
|
||||
|
||||
;; Revert tags automatically
|
||||
(setq tags-revert-without-query 1)
|
||||
|
||||
;; Use flycheck globally to check syntax and compile languages
|
||||
(global-flycheck-mode 1)
|
||||
|
||||
|
|
|
|||
|
|
@ -25,8 +25,10 @@
|
|||
|
||||
(setq-default company-backends '(company-capf ;; Backend for default complete-at-point function
|
||||
company-tern ;; Javascript
|
||||
company-keywords ;; Keyword list for all languages
|
||||
(company-keywords ;; Keyword list for all languages
|
||||
company-yasnippet ;; Snippets for all programming languages
|
||||
company-etags ;; Ctags
|
||||
)
|
||||
company-elisp ; Emacs Lisp
|
||||
company-clang company-cmake ;; C
|
||||
company-lsp ;; Language server protocol
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue