system changes
This commit is contained in:
parent
dff2d8e02b
commit
c5add6ab01
3 changed files with 88 additions and 2 deletions
|
@ -64,7 +64,9 @@ Use =diredfl= for a colourful =dired= and =ns-auto-titlebar= for a macOS native
|
|||
|
||||
Colourful delimiters with =rainbow-delimiters=.
|
||||
#+begin_src emacs-lisp
|
||||
(use-package rainbow-delimiters)
|
||||
(use-package rainbow-delimiters
|
||||
:hook
|
||||
(prog-mode . rainbow-delimiters-mode))
|
||||
#+end_src
|
||||
|
||||
Tell Emacs to use line numbers by default.
|
||||
|
@ -170,6 +172,83 @@ Install =esup= as a profiling tool.
|
|||
(setq esup-depth 0))
|
||||
#+end_src
|
||||
|
||||
Use =consult= for better search and navigation.
|
||||
#+begin_src emacs-lisp
|
||||
(use-package consult
|
||||
:bind
|
||||
(;; C-c bindings in `mode-specific-map'
|
||||
("C-c M-x" . consult-mode-command)
|
||||
("C-c h" . consult-history)
|
||||
("C-c k" . consult-kmacro)
|
||||
("C-c m" . consult-man)
|
||||
("C-c i" . consult-info)
|
||||
([remap Info-search] . consult-info)
|
||||
;; C-x bindings in `ctl-x-map'
|
||||
("C-x M-:" . consult-complex-command) ;; orig. repeat-complex-command
|
||||
("C-x b" . consult-buffer) ;; orig. switch-to-buffer
|
||||
("C-x 4 b" . consult-buffer-other-window) ;; orig. switch-to-buffer-other-window
|
||||
("C-x 5 b" . consult-buffer-other-frame) ;; orig. switch-to-buffer-other-frame
|
||||
("C-x t b" . consult-buffer-other-tab) ;; orig. switch-to-buffer-other-tab
|
||||
("C-x r b" . consult-bookmark) ;; orig. bookmark-jump
|
||||
("C-x p b" . consult-project-buffer) ;; orig. project-switch-to-buffer
|
||||
;; Custom M-# bindings for fast register access
|
||||
("M-#" . consult-register-load)
|
||||
("M-'" . consult-register-store) ;; orig. abbrev-prefix-mark (unrelated)
|
||||
("C-M-#" . consult-register)
|
||||
;; Other custom bindings
|
||||
("M-y" . consult-yank-pop) ;; orig. yank-pop
|
||||
;; M-g bindings in `goto-map'
|
||||
("M-g e" . consult-compile-error)
|
||||
("M-g f" . consult-flymake) ;; Alternative: consult-flycheck
|
||||
("M-g g" . consult-goto-line) ;; orig. goto-line
|
||||
("M-g M-g" . consult-goto-line) ;; orig. goto-line
|
||||
("M-g o" . consult-outline) ;; Alternative: consult-org-heading
|
||||
("M-g m" . consult-mark)
|
||||
("M-g k" . consult-global-mark)
|
||||
("M-g i" . consult-imenu)
|
||||
("M-g I" . consult-imenu-multi)
|
||||
;; M-s bindings in `search-map'
|
||||
("M-s d" . consult-find) ;; Alternative: consult-fd
|
||||
("M-s c" . consult-locate)
|
||||
("M-s g" . consult-grep)
|
||||
("M-s G" . consult-git-grep)
|
||||
("M-s r" . consult-ripgrep)
|
||||
("M-s l" . consult-line)
|
||||
("M-s L" . consult-line-multi)
|
||||
("M-s k" . consult-keep-lines)
|
||||
("M-s u" . consult-focus-lines)
|
||||
;; Isearch integration
|
||||
("M-s e" . consult-isearch-history)
|
||||
:map isearch-mode-map
|
||||
("M-e" . consult-isearch-history) ;; orig. isearch-edit-string
|
||||
("M-s e" . consult-isearch-history) ;; orig. isearch-edit-string
|
||||
("M-s l" . consult-line) ;; needed by consult-line to detect isearch
|
||||
("M-s L" . consult-line-multi) ;; needed by consult-line to detect isearch
|
||||
;; Minibuffer history
|
||||
:map minibuffer-local-map
|
||||
("M-s" . consult-history) ;; orig. next-matching-history-element
|
||||
("M-r" . consult-history)) ;; orig. previous-matching-history-element
|
||||
|
||||
:hook
|
||||
(completion-list-mode . consult-preview-at-point-mode)
|
||||
|
||||
:init
|
||||
(advice-add #'register-preview :override #'consult-register-window)
|
||||
(setq register-preview-delay 0.5)
|
||||
(setq xref-show-xrefs-function #'consult-xref
|
||||
xref-show-definitions-function #'consult-xref)
|
||||
|
||||
:config
|
||||
(consult-customize
|
||||
consult-theme :preview-key '(:debounce 0.2 any)
|
||||
consult-ripgrep consult-git-grep consult-grep consult-man
|
||||
consult-bookmark consult-recent-file consult-xref
|
||||
consult--source-bookmark consult--source-file-register
|
||||
consult--source-recent-file consult--source-project-recent-file
|
||||
:preview-key '(:debounce 0.4 any))
|
||||
(setq consult-narrow-key "<"))
|
||||
#+end_src
|
||||
|
||||
Disable =ls= for =dired=.
|
||||
#+begin_src emacs-lisp
|
||||
(setq dired-use-ls-dired nil)
|
||||
|
@ -463,7 +542,6 @@ Set up =eglot= to run on languages that have been configured.
|
|||
zig-mode-hook))
|
||||
(add-hook lang-hook (lambda ()
|
||||
(eglot-ensure)
|
||||
(rainbow-delimiters-mode 1)
|
||||
(tree-sitter-mode 1)
|
||||
(tree-sitter-hl-mode 1))))
|
||||
#+end_src
|
||||
|
|
1
macos.local/.flake/home/programs/.#core.nix.org
Symbolic link
1
macos.local/.flake/home/programs/.#core.nix.org
Symbolic link
|
@ -0,0 +1 @@
|
|||
jjanzen@macos.local.20458:1739823609
|
|
@ -40,6 +40,13 @@ This file imports various system configuration components in addition to enablin
|
|||
# Use zsh as my shell
|
||||
programs.zsh.enable = true;
|
||||
|
||||
# Enable documentation and make
|
||||
documentation = {
|
||||
enable = true;
|
||||
info.enable = true;
|
||||
man.enable = true;
|
||||
};
|
||||
|
||||
system.stateVersion = 5;
|
||||
|
||||
# Use ARM64 packages
|
||||
|
|
Loading…
Add table
Reference in a new issue