I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.6 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. ;; Init
  2. ;; :PROPERTIES:
  3. ;; :header-args: :tangle init.el
  4. ;; :END:
  5. ;; Here's a complete list of all of the options configurable for each host, and their default values. All variables prefixed with ~dotfiles/~. If you need to make configurations to another variable, consider creating a new option.
  6. (defvar dotfiles/font
  7. "Fira Code"
  8. "Unified system font family.")
  9. (defvar dotfiles/font-size
  10. 96
  11. "Unified system font size.")
  12. (defvar dotfiles/browser
  13. (getenv "BROWSER")
  14. "Default system web browser.")
  15. (defvar dotfiles/language
  16. (getenv "LANG")
  17. "Default system dictionary language.")
  18. (defconst dotfiles/modules-p
  19. '(core editor email desktop writing projects interface)
  20. "All of the available modules.")
  21. (defvar dotfiles/modules
  22. dotfiles/modules-p
  23. "All of the enabled modules.")
  24. (defvar dotfiles/home
  25. user-emacs-directory
  26. "Original value of `user-emacs-directory'.")
  27. (defvar dotfiles/cache
  28. (expand-file-name "~/.cache/emacs")
  29. "Redirection target of `user-emacs-directory'.")
  30. (defvar dotfiles/idle
  31. 0.0
  32. "Delay time before offering suggestions and completions.")
  33. (defvar dotfiles/leader-key
  34. "SPC"
  35. "All powerful leader key.")
  36. (defvar dotfiles/leader-key-global
  37. (concat "C-" dotfiles/leader-key)
  38. "Global prefix for the leader key.")
  39. (defvar dotfiles/projects
  40. (expand-file-name "~/.local/source/")
  41. "Location of source code projects.")
  42. (defvar dotfiles/passwords
  43. (expand-file-name "~/.password-store/")
  44. "Location of local password store.")
  45. (defvar dotfiles/public-key
  46. "37AB1CB72B741E478CA026D43025DCBD46F81C0F"
  47. "GPG key to encrypt org files for.")