aboutsummaryrefslogblamecommitdiff
path: root/home/programs/emacs/init.el
blob: 5afbbeb7e829007bebba1aaaa9cb3b3810f560fa (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"))
  :init (exec-path-from-shell-initialize))

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

(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: