summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-company.el (follow)
Commit message (Collapse)AuthorAgeFilesLines
* emacs/prog: switch to lsp-modeFranck Cuny2020-01-131-11/+0
| | | | | | | | | | | | Previously I was using the package `eglot` to provide LSP functionality. However, the package uses flymake for it, while my setup in general uses flycheck. Since lsp-mode supports both, I'm switching to ls-mode. I'm moving the code for company to the 'prog' module, so that all things related to general programming is in one location. Since I'm switching to lsp-mode mode primarily for go, I can also delete a bunch of extra functionality that is now provided by lsp-mode.
* emacs: don't complete abbreviations.Franck Cuny2019-12-231-1/+0
| | | | | If I understand correctly, this was trying to complete 'words' based on the rest of the document, which I don't want.
* [emacs] drop dabbrev from company's backendFranck Cuny2019-09-191-1/+2
| | | | | this is super annoying, it tries to complete strings in comments, which is not what i need, i only care about completion for the code.
* [emacs] company updateFranck Cuny2019-08-021-1/+7
| | | | add a few more variables for that module
* [emacs] improve support for goFranck Cuny2019-07-291-7/+0
| | | | | | | | move the requirement for `company-go` to the module for go. rework the configuration for hydra, to make it a little bit easier. force length of comments to 80 characters per line.
* [emacs] improve support for go-modeFranck Cuny2019-07-261-0/+12
improve the support to write go code. adding hydra to don't have to remember all the commands i want to use with `go-guru`, and add `gotest` to run tests directly from emacs. add `company-go` for code completion. will likely add more commands to hydra as i go.