- 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
21 lines
506 B
EmacsLisp
21 lines
506 B
EmacsLisp
;; -*- lexical-binding: t -*-
|
|
|
|
(use-package magit
|
|
:bind ("C-c g" . magit-status)
|
|
:config
|
|
(setq magit-show-long-lines-warning nil))
|
|
|
|
;; (use-package eat
|
|
;; :ensure `(eat :repo "https://codeberg.org/akib/emacs-eat"
|
|
;; :files ("*.el" ("term" "term/*.el") "*.texi"
|
|
;; "*.ti" ("terminfo/e" "terminfo/e/*")
|
|
;; ("terminfo/65" "terminfo/65/*")
|
|
;; ("integration" "integration/*")
|
|
;; (:exclude ".dir-locals.el" "*-tests.el")))
|
|
;; :config
|
|
;; )
|
|
|
|
(use-package vterm)
|
|
|
|
(provide 'init-coding)
|