/ init.el
init.el
1 (add-to-list 'load-path "~/emacs-android") 2 (load "khalid-common") 3 ;; (load "khalid-shared") 4 5 6 ;; Use Fish as the default shell 7 (setq shell-file-name (conc-prefix "/bin/fish")) 8 9 ;; (use-package goto-chg) 10 ;; (use-package cl-lib) 11 12 ;; (use-package evil 13 ;; :ensure t 14 ;; :init 15 ;; (setq evil-want-integration t) ;; This is optional since it's already set to t by default. 16 ;; (setq evil-want-keybinding nil) 17 ;; :config 18 ;; (evil-mode 1)) 19 20 ;; (custom-set-variables 21 ;; ;; custom-set-variables was added by Custom. 22 ;; ;; If you edit it by hand, you could mess it up, so be careful. 23 ;; ;; Your init file should contain only one such instance. 24 ;; ;; If there is more than one, they won't work right. 25 ;; '(auto-save-visited-interval 15) 26 ;; '(auto-save-visited-mode t) 27 ;; '(column-number-mode t) 28 ;; '(mode-line-compact 'long) 29 ;; '(mode-line-format 30 ;; '("%e" mode-line-front-space 31 ;; (:propertize 32 ;; ("" mode-line-mule-info mode-line-modified 33 ;; mode-line-window-dedicated) 34 ;; display (min-width (6.0))) 35 ;; mode-line-position mode-line-modes mode-line-frame-identification 36 ;; mode-line-buffer-identification " " 37 ;; (project-mode-line project-mode-line-format) (vc-mode vc-mode) 38 ;; " " mode-line-misc-info mode-line-end-spaces)) 39 ;; '(mode-line-percent-position nil) 40 ;; '(mode-line-position-column-line-format '(" %l:%c")) 41 ;; '(package-archives 42 ;; '(("gnu" . "https://elpa.gnu.org/packages/") 43 ;; ("nongnu" . "https://elpa.nongnu.org/nongnu/") 44 ;; ("melpa" . "https://melpa.org/packages/"))) 45 ;; '(package-selected-packages nil) 46 ;; '(safe-local-variable-values '((eval setq truncate-lines t)))) 47 ;; (custom-set-faces 48 ;; ;; custom-set-faces was added by Custom. 49 ;; ;; If you edit it by hand, you could mess it up, so be careful. 50 ;; ;; Your init file should contain only one such instance. 51 ;; ;; If there is more than one, they won't work right. 52 ;; )