Advertisement
pintcat

emacs configuration

Jan 18th, 2024 (edited)
1,087
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.78 KB | Software | 0 0
  1. ;(setq-default indent-tabs-mode nil)    ; turns tabs into spaces
  2. (setq-default tab-width 4)
  3. (setq indent-line-function 'insert-tab)
  4. (custom-set-variables
  5.  ;; custom-set-variables was added by Custom.
  6.  ;; If you edit it by hand, you could mess it up, so be careful.
  7.  ;; Your init file should contain only one such instance.
  8.  ;; If there is more than one, they won't work right.
  9.  )
  10. (custom-set-faces
  11.  ;; custom-set-faces was added by Custom.
  12.  ;; If you edit it by hand, you could mess it up, so be careful.
  13.  ;; Your init file should contain only one such instance.
  14.  ;; If there is more than one, they won't work right.
  15.  '(completions-common-part ((t (:foreground "royalblue2"))))
  16.  '(custom-button-pressed-unraised ((t (:inherit custom-button-unraised :foreground "magenta"))))
  17.  '(custom-comment-tag ((t (:foreground "royalblue2"))))
  18.  '(custom-state ((t (:foreground "olivedrab"))))
  19.  '(custom-variable-obsolete ((t (:foreground "dodgerblue"))))
  20.  '(custom-variable-tag ((t (:foreground "dodgerblue" :weight bold))))
  21.  '(escape-glyph ((t (:foreground "chocolate"))))
  22.  '(font-lock-builtin-face ((t (:foreground "green"))))
  23.  '(font-lock-comment-face ((t (:foreground "brightred"))))
  24.  '(font-lock-function-name-face ((t (:foreground "royalblue1"))))
  25.  '(font-lock-keyword-face ((t (:foreground "mediumorchid"))))
  26.  '(font-lock-string-face ((t (:foreground "violetred2"))))
  27.  '(font-lock-variable-name-face ((t (:foreground "orange"))))
  28.  '(homoglyph ((t (:foreground "chocolate"))))
  29.  '(link ((t (:foreground "royalblue2" :underline t))))
  30.  '(link-visited ((t (:inherit link :foreground "magenta2"))))
  31.  '(minibuffer-prompt ((t (:foreground "dodgerblue"))))
  32.  '(nobreak-hyphen ((t (:foreground "chocolate"))))
  33.  '(tool-bar ((t (:foreground "black" :box (:line-width (1 . 1) :style released-button))))))
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement