diff options
Diffstat (limited to '.emacs-custom.el')
| -rw-r--r-- | .emacs-custom.el | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/.emacs-custom.el b/.emacs-custom.el new file mode 100644 index 0000000..60b6095 --- /dev/null +++ b/.emacs-custom.el @@ -0,0 +1,68 @@ +(put 'dired-find-alternate-file 'disabled nil) +(put 'downcase-region 'disabled nil) +(put 'upcase-region 'disabled nil) +(put 'narrow-to-region 'disabled nil) + +(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. + '(after-save-hook + (quote + (executable-make-buffer-file-executable-if-script-p))) + '(async-shell-command-buffer (quote new-buffer)) + '(backup-directory-alist (quote (("" . "~/.emacs.backup")))) + '(column-number-mode t) + '(comint-scroll-show-maximum-output nil) + '(delete-selection-mode t) + '(dired-listing-switches "-al -Fhv --group-directories-first") + '(ediff-merge-split-window-function (quote split-window-vertically)) + '(ediff-split-window-function (quote split-window-horizontally)) + '(electric-pair-mode t) + '(erc-log-channels-directory "~/.irc-logs") + '(erc-log-write-after-insert t) + '(erc-log-write-after-send t) + '(erc-nick "peniblec") + '(erc-prompt-for-password nil) + '(eshell-scroll-show-maximum-output nil) + '(gdb-many-windows t) + '(git-commit-setup-hook + (quote + (git-commit-save-message git-commit-setup-changelog-support git-commit-turn-on-auto-fill git-commit-turn-on-flyspell git-commit-propertize-diff with-editor-usage-message buffer-justify-full))) + '(global-page-break-lines-mode t nil (page-break-lines)) + '(icomplete-mode t) + '(indent-tabs-mode nil) + '(inhibit-startup-screen t) + '(isearch-allow-scroll t) + '(magit-log-arguments (quote ("--graph" "--color" "--decorate" "-n256"))) + '(magit-log-section-arguments (quote ("--graph" "--color" "--decorate" "-n256"))) + '(markdown-asymmetric-header t) + '(markdown-command "pandoc -s") + '(markdown-enable-math t) + '(markdown-header-scaling t) + '(menu-bar-mode nil) + '(package-selected-packages + (quote + (rg delight paradox flycheck magit markdown-mode page-break-lines rust-mode wgrep))) + '(page-break-lines-modes (quote (fundamental-mode text-mode prog-mode special-mode))) + '(paradox-execute-asynchronously t) + '(paradox-github-token t) + '(paradox-spinner-type (quote random)) + '(python-fill-docstring-style (quote pep-257-nn)) + '(python-shell-interpreter "python3") + '(scroll-bar-mode nil) + '(scroll-conservatively 101) + '(scroll-preserve-screen-position t) + '(send-mail-function (quote smtpmail-send-it)) + '(show-paren-mode t) + '(split-width-threshold 120) + '(tool-bar-mode nil) + '(truncate-lines t) + '(visual-line-fringe-indicators (quote (left-curly-arrow right-curly-arrow)))) +(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. + ) |
