Advertisement
pintcat

emacs configuration

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