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
35d43e59
Commit
35d43e59
authored
4 years ago
by
Michael Hauspie
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://gitlab.univ-lille.fr/michael.hauspie/emacs
parents
2590dda3
068ddf04
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
+24
-3
24 additions, 3 deletions
configuration.org
with
24 additions
and
3 deletions
configuration.org
+
24
−
3
View file @
35d43e59
...
...
@@ -274,10 +274,14 @@ Some of my configuration entries where borrowed from other people, see
#+begin_src emacs-lisp
(use-package fira-code-mode
:config (global-fira-code-mode))
:config
(global-fira-code-mode)
(setq fira-code-mode-enable-hex-literal nil)
)
#+end_src
** Modeline
Use =moody= for a nice looking bottom modeline
...
...
@@ -786,6 +790,7 @@ Some of my configuration entries where borrowed from other people, see
)
#+end_src
For displaying more information directly in the buffer, I use =lsp-ui=
#+begin_src emacs-lisp
...
...
@@ -841,8 +846,24 @@ Some of my configuration entries where borrowed from other people, see
)
#+end_src
For this to work, you need to install =rust-analyzer= in
=~/.cargo/bin=.
For this to work, you need to install =rust-analyzer= and =rustmft=.
#+begin_src bash :results output verbatim
if [[ "$OSTYPE" =~ ^darwin ]]
then
echo "Installing for macos"
binary=rust-analyzer-mac
else
echo "Installing for linux"
binary=rust-analyzer-linux
fi
curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/$binary -o ~/.cargo/bin/rust-analyzer
chmod +x ~/.cargo/bin/rust-analyzer
#+end_src
#+RESULTS:
: Installing for macos
Adds cargo installed binaries to exec path
...
...
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