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.5 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. ;; All of the options available in the framework.
  2. ;; Please see README.org for more information.
  3. (defvar dotfiles/home user-emacs-directory
  4. "Original value of `user-emacs-directory'.")
  5. (defvar dotfiles/cache (expand-file-name "~/.cache/emacs")
  6. "Redirection target of `user-emacs-directory'.")
  7. (defvar dotfiles/browser (getenv "BROWSER")
  8. "Default system web browser.")
  9. (defvar dotfiles/language (getenv "LANG")
  10. "Default system dictionary language.")
  11. (defconst dotfiles/modules-p
  12. '(core
  13. editor
  14. shell
  15. email
  16. terminal
  17. encryption
  18. desktop
  19. writing
  20. presentations
  21. website
  22. capture
  23. projects
  24. development
  25. interface
  26. dashboard)
  27. "All of the available modules.")
  28. (defvar dotfiles/modules dotfiles/modules-p
  29. "All of the enabled modules.")
  30. (defvar dotfiles/font "Fira Code"
  31. "Unified system font family.")
  32. (defvar dotfiles/font-size 96
  33. "Unified system font size.")
  34. (defvar dotfiles/idle 0.0
  35. "Delay time before offering suggestions and completions.")
  36. (defvar dotfiles/leader-key "SPC"
  37. "All powerful leader key.")
  38. (defvar dotfiles/leader-key-global
  39. (concat "C-" dotfiles/leader-key)
  40. "Global prefix for the leader key.")
  41. (defvar dotfiles/projects
  42. (expand-file-name "~/.local/source/")
  43. "Location of source code projects.")
  44. (defvar dotfiles/passwords
  45. (expand-file-name "~/.password-store/")
  46. "Location of local password store.")
  47. (defvar dotfiles/public-key
  48. "37AB1CB72B741E478CA026D43025DCBD46F81C0F"
  49. "GPG key to encrypt org files for.")