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
c40bc51b
Commit
c40bc51b
authored
3 years ago
by
Liu Miao
Browse files
Options
Downloads
Patches
Plain Diff
add rime support
parent
06d63370
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lisp/apps.el
+9
-4
9 additions, 4 deletions
lisp/apps.el
lisp/init-org.el
+3
-1
3 additions, 1 deletion
lisp/init-org.el
lisp/prog-lisp.el
+5
-0
5 additions, 0 deletions
lisp/prog-lisp.el
with
17 additions
and
5 deletions
lisp/apps.el
+
9
−
4
View file @
c40bc51b
...
...
@@ -11,15 +11,13 @@
:config
(
setq-default
deft-extensions
user/notes-extensions
deft-directory
user/notes-dir
deft-recursive
t
))
deft-recursive
t
))
;;; youdao-dict
(
use-package
youdao-dictionary
:ensure
t
:config
(
evil-define-key
nil
'global
(
kbd
"<leader>oy"
)
'youdao-dictionary-search-at-point+
)
)
(
evil-define-key
nil
'global
(
kbd
"<leader>oy"
)
'youdao-dictionary-search-at-point+
))
;;; Magit for git
(
use-package
magit
...
...
@@ -44,6 +42,13 @@
"gs"
'magit-status
"gd"
'magit-diff-range
))
;;; Rime
(
use-package
rime
:ensure
t
:config
(
setq
rime-show-candidate
'posframe
default-input-method
"rime"
))
(
provide
'apps
)
;;; apps.el ends here
This diff is collapsed.
Click to expand it.
lisp/init-org.el
+
3
−
1
View file @
c40bc51b
...
...
@@ -40,11 +40,13 @@
(
add-hook
'org-mode-hook
(
lambda
()
(
make-face
'width-font-face
)
(
set-face-attribute
'width-font-face
nil
:font
"等距更纱黑体 SC 1
2
"
)
;; 13, 14, 16等会出现不等宽
(
set-face-attribute
'width-font-face
nil
:font
"等距更纱黑体 SC 1
5
"
)
;; 13, 14, 16等会出现不等宽
(
setq
buffer-face-mode-face
'width-font-face
)
(
buffer-face-mode
))))
:config
(
require
'org-tempo
)
(
setq
org-clock-persist-file
(
concat
user/cache-directory
"org-clock-save.el"
)
org-id-locations-file
(
concat
user/cache-directory
...
...
This diff is collapsed.
Click to expand it.
lisp/prog-lisp.el
+
5
−
0
View file @
c40bc51b
...
...
@@ -12,5 +12,10 @@
:ensure
t
:hook
(
scheme-mode
.
parinfer-mode
))
(
use-package
lispy-mode
:ensure
lispy
:hook
emacs-lisp-mode
:diminish
lispy-mode
)
(
provide
'prog-lisp
)
;;; prog-lisp.el ends here
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