aboutsummaryrefslogblamecommitdiff
path: root/nix/users/fcuny/configs/emacs/init.el
blob: fdf0a3a3e3ba90cd7fcb0c458fcf175e6a063c96 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                                         
                                                                                               
 

                                          
 


                          
                    
                           
                   
 
                   



                                       
 












                                        
                     

                                                            
;;; init.el --- This is where all emacs start. -*- lexical-binding: t -*-

;;; Commentary:

;;; Code:

(add-to-list 'load-path (concat user-emacs-directory (convert-standard-filename "site-lisp/")))

(use-package exec-path-from-shell
  :init (exec-path-from-shell-initialize))

(require 'init-base)
(require 'init-ui)
(require 'init-completion)
(require 'init-text)
(require 'init-programming)
(require 'init-llm)

(use-package server
  :config
  (setq server-client-instructions nil)
  (unless (server-running-p)
    (server-start)))

(use-package eshell
  :commands (eshell eshell-command)
  :bind (("C-r" . consult-history))
  :custom
  (eshell-hist-ignoredups t)
  (eshell-history-size 50000)
  (eshell-ls-dired-initial-args '("-h"))
  (eshell-ls-initial-args "-h")
  (eshell-ls-exclude-regexp "~\\'")
  (eshell-save-history-on-exit t)
  (eshell-stringify-t nil)
  (eshell-term-name "ansi"))

;;; init.el ends here
;; byte-compile-warnings: (not docstrings lexical noruntime)
;; End: