Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
emacs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michael Hauspie
emacs
Commits
bb6d49de
Commit
bb6d49de
authored
2 years ago
by
Michael Hauspie
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab-ssh.univ-lille.fr:michael.hauspie/emacs
parents
a18370ef
c9dfe812
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
configuration.org
+7
-14
7 additions, 14 deletions
configuration.org
with
7 additions
and
14 deletions
configuration.org
+
7
−
14
View file @
bb6d49de
...
...
@@ -711,7 +711,8 @@ all buffers. I also set =M-/= to trigger =company-complete=
#+begin_src emacs-lisp
(use-package company
:ensure company-lsp
;; Looks like company-lsp is no longer available
;; :ensure company-lsp
:ensure company-box
:ensure company-php
:ensure company-web
...
...
@@ -740,19 +741,18 @@ completing symbols in source code.
:hook (company-mode . company-box-mode))
#+end_src
Now some backends I use. Mainly lsp, php and web
related. =company-lsp= is slow to start, so we force a defer loading
only when it's needed.
Now some backends I use. Mainly php and web
related.
#+begin_src emacs-lisp
(use-package company-php)
(use-package company-web)
(use-package company-lsp
:defer t)
;; looks like company-lsp is no longer available
;;(use-package company-lsp
;; :defer t)
#+end_src
* Code navigation
** Treemacs
...
...
@@ -860,12 +860,6 @@ flycheck if available to show code diagnosis.
(use-package flycheck)
#+end_src
For languages that do not have LSP yet, we can add some flycheck extensions
#+begin_src emacs-lisp
(use-package flycheck-perl6)
#+end_src
** Language specific configuration
...
...
@@ -935,7 +929,6 @@ For dockerfiles and docker-compose files, install some docker packages
(use-package docker)
(use-package docker-api)
(use-package docker-cli)
(use-package docker-tramp)
#+end_src
*** Web
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment