Files
.emacs.d/lisp/init-bindings.el
Zelong Kuang 0afab4e64e feat: Add LLM integration and improve Emacs configuration
- Add gptel and gptel-magit packages for AI-powered Git commits and
- chat Add org-roam and org-roam-ui for better note-taking and
- knowledge management Add benchmark-init to measure startup
- performance Add winum for window navigation with keybindings Add
- vterm for better terminal emulation Configure exec-path-from-shell
- to inherit shell environment Add org-roam.db to gitignore Set
- use-short-answers for yes/no prompts Add org-todo-list keybinding
- and update magit binding Configure org-agenda-files to include org
- directory Remove commented eat package configuration
2025-12-14 06:09:17 +11:00

14 lines
327 B
EmacsLisp

;; -*- lexical-binding: t -*-
(define-prefix-command 'orgmode-map)
(global-set-key (kbd "C-c n") 'orgmode-map)
(define-key orgmode-map (kbd "a") #'org-agenda)
(define-key orgmode-map (kbd "n") #'org-capture)
(define-key orgmode-map (kbd "t") #'org-todo-list)
(global-set-key (kbd "C-\\") #'vterm)
(provide 'init-bindings)