my-emacs-d/customizations.el

202 lines
4.5 KiB
EmacsLisp
Raw Normal View History

(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(background-color "#7f7f7f")
'(background-mode dark)
'(blink-cursor-mode t)
'(column-number-mode t)
'(cursor-color "#ffd85c")
'(cursor-type (quote bar))
'(custom-enabled-themes (quote (tango-dark)))
'(custom-file (concat user-emacs-directory "customizations.el"))
'(custom-safe-themes
(quote
("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279" "3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" "a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default)))
'(echo-keystrokes 0.1)
'(fill-column 98)
'(foreground-color "#5c5cff")
'(indent-tabs-mode nil)
'(indicate-empty-lines t)
'(inhibit-startup-echo-area-message (user-login-name))
'(inhibit-startup-screen t)
'(initial-scratch-message nil)
'(minibuffer-prompt-properties
(quote
(read-only t cursor-intangible t face minibuffer-prompt)))
'(package-selected-packages
(quote
2016-11-09 09:13:56 +00:00
(ace-mc
ace-popup-menu
ace-window
achievements
ag
alert
2018-07-25 05:16:09 +00:00
all-the-icons
anaconda-mode
2016-11-07 22:57:35 +00:00
anzu
2018-03-19 14:53:49 +00:00
ascii-art-to-unicode
auto-highlight-symbol
auto-package-update
2016-11-09 07:23:51 +00:00
auto-virtualenv
avy
beacon
bind-key
cheatsheet
coffee-mode
command-log-mode
company
company-anaconda
company-c-headers
company-emoji
company-restclient
company-shell
company-web
2016-11-30 16:35:00 +00:00
csharp-mode
2018-08-28 16:05:26 +00:00
csv-mode
2018-03-19 14:53:49 +00:00
dash
2016-11-23 07:41:59 +00:00
dashboard
diminish
2016-11-07 15:04:50 +00:00
dired-k
2017-01-11 08:10:02 +00:00
dockerfile-mode
drag-stuff
electric-case
2017-08-07 20:41:08 +00:00
electric-operator
electric-spacing
emamux
2018-07-19 10:50:05 +00:00
emmet-mode
enlive
eshell-fringe-status
eshell-prompt-extras
expand-region
fancy-narrow
feature-mode
fill-column-indicator
flycheck
flycheck-pkg-config
flymake-python-pyflakes
focus
2016-11-07 15:17:30 +00:00
form-feed
ggtags
2018-03-19 14:53:49 +00:00
gh
2016-11-18 14:19:15 +00:00
gist
git-gutter-fringe
git-messenger
git-timemachine
gitconfig-mode
github-notifier
gitignore-mode
gitlab
gnugo
2018-08-28 16:06:02 +00:00
go-mode
gobgen
google
goto-last-change
helm
helm-ag
2018-03-19 14:53:49 +00:00
helm-bibtex
helm-c-yasnippet
helm-chrome
helm-company
helm-descbinds
helm-describe-modes
helm-flycheck
helm-flyspell
helm-github-stars
helm-google
helm-gtags
2016-11-11 10:24:34 +00:00
helm-hunks
helm-projectile
2016-11-11 11:43:35 +00:00
helm-pydoc
helm-smex
helm-swoop
helm-unicode
2016-11-11 22:26:40 +00:00
hl-todo
hungarian-holidays
hungry-delete
hyde
id-manager
identica-mode
jinja2-mode
js2-mode
json-mode
kanban
2018-03-19 14:53:49 +00:00
lorem-ipsum
magit
magit-gerrit
magithub
markdown-mode
2018-03-19 14:53:49 +00:00
marshal
mc-extras
mediawiki
2018-08-28 16:06:22 +00:00
meson-mode
multiple-cursors
2018-07-25 05:16:09 +00:00
neotree
ng2-mode
nyan-mode
nyan-prompt
org
org-bullets
org-jekyll
org-projectile
org-random-todo
2018-03-19 14:53:49 +00:00
org-ref
org-rtm
origami
2018-03-19 14:53:49 +00:00
package-build
page-break-lines
phi-search
phi-search-mc
2018-07-30 20:10:04 +00:00
pipenv
plantuml-mode
2016-11-21 15:45:53 +00:00
po-mode
projectile
2018-03-19 14:53:49 +00:00
pycoverage
python-x
pyvenv
rainbow-delimiters
rainbow-mode
restclient
restclient-helm
2018-03-19 14:53:49 +00:00
s
sass-mode
secretaria
smart-mode-line
smart-mode-line-powerline-theme
smartparens
2018-03-19 14:53:49 +00:00
sphinx-doc
spinner
sx
typescript-mode
2018-03-19 14:53:49 +00:00
undo-tree
use-package
vala-mode
vala-snippets
wakatime-mode
web-mode
2018-03-19 14:53:49 +00:00
with-editor
xlicense
yaml-mode
yasnippet
2018-07-19 10:45:59 +00:00
yasnippet-snippets
zone-nyan
zygospore)))
'(safe-local-variable-values (quote ((bug-reference-bug-regexp . "#\\(?2:[0-9]+\\)"))))
2018-06-12 13:06:48 +00:00
'(scroll-margin 2)
'(sgml-basic-offset 4)
'(show-trailing-whitespace t)
'(suggest-key-bindings nil)
2017-04-18 08:58:32 +00:00
'(tab-width 4)
'(user-mail-address "gergely@polonkai.eu"))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
2016-11-09 09:14:29 +00:00
'(default ((t (:family "Hack" :foundry "simp" :slant normal :weight normal :height 98 :width normal))))
2016-11-10 16:08:18 +00:00
'(aw-leading-char-face ((t (:inherit ace-jump-face-foreground :height 2.0))))
'(hl-line ((t (:inherit nil :background "gray25"))))
'(trailing-whitespace ((t (:inherit nil :background "red1"))))
'(whitespace-line ((t (:inherit nil :background "orange4")))))