aboutsummaryrefslogblamecommitdiff
path: root/home/programs/emacs/init.el
blob: a1ff154158b6921c77f6de97a34c37db3c8084b1 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                                         
                                                                                               
 
                                 
         
                                                                                                         
                                          
 


                          
                    
                           
                      
                   
 
                   



                                       
 
                     

                                                            
;;; 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
  :custom
  (exec-path-from-shell-variables '("PATH" "MANPATH" "GOPATH" "GOBIN" "ASPELL_CONF" "ANTHROPIC_API_KEY"))
  :init (exec-path-from-shell-initialize))

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

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

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