Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
emacs.d
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
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
Liu Miao
emacs.d
Commits
378809a7
Commit
378809a7
authored
2 years ago
by
Liu Miao
Browse files
Options
Downloads
Patches
Plain Diff
fix bugs on install
parent
c8b5c887
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lisp/apps.el
+14
-14
14 additions, 14 deletions
lisp/apps.el
lisp/completion.el
+3
-2
3 additions, 2 deletions
lisp/completion.el
lisp/programming.el
+2
-2
2 additions, 2 deletions
lisp/programming.el
with
19 additions
and
18 deletions
lisp/apps.el
+
14
−
14
View file @
378809a7
...
...
@@ -18,21 +18,21 @@
;;; Magit for git
(
use-package
magit
:ensure
t
)
(
use-package
forge
:ensure
t
)
(
use-package
magit-gitflow
:ensure
t
:init
(
use-package
forge
:ensure
t
)
(
use-package
magit-gitflow
:ensure
t
:hook
(
maigt-mode
.
turn-on-magit-gitflow
))
(
use-package
git-gutter
:ensure
t
:custom
(
git-gutter:update-interval
2
)
:config
(
global-git-gutter-mode
+1
)))
:hook
(
maigt-mode
.
turn-on-magit-gitflow
))
(
use-package
git-gutter
:ensure
t
:custom
(
git-gutter:update-interval
2
)
:config
(
global-git-gutter-mode
+1
))
;;; Rime
(
use-package
rime
...
...
This diff is collapsed.
Click to expand it.
lisp/completion.el
+
3
−
2
View file @
378809a7
...
...
@@ -102,6 +102,7 @@ If prefix ARG is set, include ignored/hidden files."
)
(
use-package
consult
:ensure
t
:defer
t
:after
(
projectile
vertico
)
:preface
...
...
@@ -136,8 +137,8 @@ If prefix ARG is set, include ignored/hidden files."
(
use-package
corfu
:ensure
t
;; Optional customizations
:custom
;; Optional customizations
:custom
(
corfu-cycle
t
)
;; Enable cycling for `corfu-next/previous'
(
corfu-auto
t
)
;; Enable auto completion
(
corfu-separator
?\s
)
;; Orderless field separator
...
...
This diff is collapsed.
Click to expand it.
lisp/programming.el
+
2
−
2
View file @
378809a7
...
...
@@ -57,8 +57,8 @@
:commands
lsp-ivy-workspace-symbol
)
(
use-package
dap-mode
:
after
(
lsp-mode
)
:
ensure
t
)
:
ensure
t
:
after
(
lsp-mode
)
)
;;; Completion
(
use-package
yasnippet
...
...
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