Skip to content

Commit

Permalink
minor optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
dej4vu committed Jul 8, 2024
1 parent 0315861 commit 2acd41d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lisp/init-editing-utils.el
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
;; clang-format
(use-package clang-format
:ensure t
:defer t
)

(add-hook 'prog-mode-hook 'hs-minor-mode)
Expand All @@ -28,6 +29,7 @@
:ensure t
:init
(golden-ratio-mode +1)
:defer t
:config
(setq golden-ratio-extra-commands
(append golden-ratio-extra-commands
Expand Down Expand Up @@ -78,6 +80,9 @@
;; global toggle commentary
(global-set-key (kbd "C-c C-c") 'comment-line)

;; insert newline below and jumpt to it
(global-set-key (kbd "<C-return>") (kbd "C-e C-m"))

;; multiple-cursors
(use-package multiple-cursors
:ensure t
Expand Down
1 change: 1 addition & 0 deletions lisp/init-themes.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
(load-theme 'ample-light t t)
;; choose one to enable
(enable-theme 'ample)
:defer t
)
(provide 'init-themes)
1 change: 1 addition & 0 deletions lisp/init-ui.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
;; show keybindings
(use-package which-key
:ensure t
:defer t
:init
(setq which-key-idle-delay 2.0)
;;:config
Expand Down

0 comments on commit 2acd41d

Please sign in to comment.