This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
dianciemacs/init.el

49 lines
1.5 KiB
EmacsLisp
Raw Normal View History

2022-11-08 17:53:06 +00:00
;; Disable Emacs' GTK decorations. Done in this file otherwise done too late.
2022-11-08 17:53:04 +00:00
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
2022-11-08 17:53:07 +00:00
;; Disable the modeline. Done in this file for the same reason above
(setq-default mode-line-format nil)
2022-11-08 22:10:50 +00:00
;; Define the leader-key to use.
(defconst leader-key "SPC")
2022-11-08 17:53:04 +00:00
;; Straight.el bootstrap
(defvar bootstrap-version)
(let ((bootstrap-file
2022-11-08 22:10:50 +00:00
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) ;
2022-11-08 17:53:04 +00:00
(bootstrap-version 6))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
;; Install use-package for simplicity, and use straight.el for it by default
(straight-use-package 'use-package)
(setq straight-use-package-by-default t)
2022-11-08 17:53:07 +00:00
;; Always make sure packages are installed to the system
(setq use-package-always-ensure t)
2022-11-08 17:53:07 +00:00
;; Add external e-lisp files to the load-path
2022-11-08 17:53:06 +00:00
(add-to-list 'load-path (concat user-emacs-directory
(convert-standard-filename "lisp/")))
2022-11-08 17:53:06 +00:00
2022-11-08 17:53:07 +00:00
;; Load the code of some external files
(load "interface")
(load "editor")
(load "org-mode")
(load "keybinds")
(load "performance")
2022-11-13 18:41:10 +00:00
(load "languages")
2022-11-12 18:58:50 +00:00
;; Load user configuration
(add-to-list 'load-path (concat user-emacs-directory
(convert-standard-filename "user/")))
(load "init")