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.

44 lines
1.3 KiB

  1. (defconst dotfiles/modules-p
  2. '(org trash keys evil dired magit
  3. shell mu4e elfeed eshell vterm
  4. gpg pass x11 exwm roam agenda
  5. spelling grammar reveal hugo
  6. capture projects docker lsp dap
  7. cc go uml conf python fonts ivy
  8. themes modeline dashboard)
  9. "All of the available modules.")
  10. (defvar dotfiles/modules dotfiles/modules-p
  11. "All of the enable modules, default value equal to `dotfiles/modules-p'.")
  12. (defvar dotfiles/language (getenv "LANG")
  13. "Default system dictionary language.")
  14. (defvar dotfiles/font "Fira Code"
  15. "Unified system font family.")
  16. (defvar dotfiles/font-size 96
  17. "Unified system font size.")
  18. (defvar dotfiles/idle 0.0
  19. "Delay time before offering suggestions and completions.")
  20. (defvar dotfiles/leader-key "SPC"
  21. "The all-powerful leader key.")
  22. (defvar dotfiles/leader-key-global
  23. (concat "C-" dotfiles/leader-key)
  24. "Global prefix for the all-powerful leader key.")
  25. (defvar dotfiles/projects
  26. (or (getenv "DOTFILES_PROJECTS")
  27. (expand-file-name "~/.local/source"))
  28. "Location of source code projects.")
  29. (defvar dotfiles/passwords
  30. (or (getenv "DOTFILES_PASSWORDS")
  31. (expand-file-name "~/.password-store"))
  32. "Location of the local password store.")
  33. (defvar dotfiles/public-key "37AB1CB72B741E478CA026D43025DCBD46F81C0F"
  34. "GPG kley to encrpy org files for/to.")