Skip to content

Instantly share code, notes, and snippets.

@neechbear
Forked from node13h/.emacs
Created March 12, 2018 15:52
Show Gist options
  • Save neechbear/1abba1be9d5be7f1ed3ac5497cb0a830 to your computer and use it in GitHub Desktop.
Save neechbear/1abba1be9d5be7f1ed3ac5497cb0a830 to your computer and use it in GitHub Desktop.
.emacs for Python development
;;; package --- Summary
;;; Commentary:
;;;
;;; Code:
;;;
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
(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.
'(ac-auto-show-menu nil)
'(ac-delay 0.5)
'(custom-enabled-themes (quote (tango-dark)))
'(custom-safe-themes
(quote
("a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" "135bbd2e531f067ed6a25287a47e490ea5ae40b7008211c70385022dbab3ab2a" default)))
'(elpy-modules
(quote
(elpy-module-company elpy-module-eldoc elpy-module-pyvenv elpy-module-highlight-indentation elpy-module-yasnippet elpy-module-django elpy-module-sane-defaults)))
'(elpy-rpc-backend "jedi")
'(flycheck-flake8-maximum-line-length 90)
'(global-auto-revert-mode t)
'(global-diff-hl-mode t)
'(global-flycheck-mode t)
'(global-whitespace-mode t)
'(ido-mode (quote both) nil (ido))
'(indent-tabs-mode nil)
'(inhibit-startup-screen t)
'(org-adapt-indentation t)
'(org-agenda-files (quote ("~/Org")))
'(org-agenda-window-setup (quote current-window))
'(org-capture-templates
(quote
(("t" "Todo" entry
(file+headline "~/Org/TODO.org" "Unplanned")
"* TODO %?
%i
%a")
("j" "Journal" entry
(file+datetree "~/Org/journal.org")
"* %?
Entered on %U
%i
%a")
("i" "Idea" entry
(file+headline "~/Org/IDEAS.org")
"* %?
Entered on %U
%i
%a"))))
'(org-clock-clocked-in-display (quote frame-title))
'(org-clock-idle-time 10)
'(org-log-done (quote time))
'(org-pomodoro-format "%s")
'(org-pomodoro-long-break-format "%s")
'(org-pomodoro-short-break-format "%s")
'(org-src-fontify-natively t)
'(org-startup-indented nil)
'(package-archives
(quote
(("melpa-stable" . "http://stable.melpa.org/packages/")
("gnu" . "http://elpa.gnu.org/packages/"))))
'(package-selected-packages
(quote
(ace-window magit yasnippet auto-complete autopair find-file-in-repository flycheck multiple-cursors org-pomodoro web-mode puppet-mode buffer-move cider clojure-mode smart-mode-line yaml-mode avy elpy markdown-mode php-mode paredit diff-hl)))
'(show-paren-mode t)
'(sml/replacer-regexp-list
(quote
(("^~/Projects/" ":P:")
("^~/Org/" ":Org:")
("^~/\\.emacs\\.d/elpa/" ":ELPA:")
("^~/\\.emacs\\.d/" ":ED:")
("^/sudo:.*:" ":SU:")
("^~/Documents/" ":Doc:")
("^~/Dropbox/" ":DB:")
("^:\\([^:]*\\):Documento?s/" ":\\1/Doc:")
("^~/[Gg]it/" ":Git:")
("^~/[Gg]it[Hh]ub/" ":Git:")
("^~/[Gg]it\\([Hh]ub\\|\\)-?[Pp]rojects/" ":Git:"))))
'(tool-bar-mode nil)
'(web-mode-enable-current-element-highlight t)
'(web-mode-markup-indent-offset 2)
'(whitespace-style
(quote
(face trailing lines-tail empty space-after-tab space-before-tab)))
'(yas-global-mode t))
(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.
'(default ((t (:family "DejaVu Sans Mono" :foundry "unknown" :slant normal :weight normal :height 90 :width normal))))
'(mode-line ((t (:family "DejaVu Sans Condensed"))))
'(mode-line-inactive ((t (:family "DejaVu Sans Condensed")))))
;; (add-to-list 'package-archives
;; '("melpa" . "http://melpa.org/packages/"))
;; org-pomodoro and puppet-mode are seriously outdated in MELPA stable, therefore should be installed from MELPA manually
(package-install-selected-packages)
(require 'web-mode)
(setq web-mode-engines-alist
'(("django" . "\\.html\\'")))
(add-to-list 'auto-mode-alist '("\\.html\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.erb\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.j2\\'" . web-mode))
(add-hook 'emacs-lisp-mode-hook #'enable-paredit-mode)
(add-hook 'cider-repl-mode-hook #'company-mode)
(add-hook 'cider-mode-hook #'company-mode)
(add-hook 'cider-mode-hook #'enable-paredit-mode)
(elpy-enable)
(sml/setup)
(global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines)
(global-set-key (kbd "C->") 'mc/mark-next-like-this)
(global-set-key (kbd "C-<") 'mc/mark-previous-like-this)
(global-set-key (kbd "C-c C-<") 'mc/mark-all-like-this)
(global-set-key (kbd "C-:") 'avy-goto-char)
(global-set-key (kbd "C-c j") 'avy-goto-word-or-subword-1)
(global-set-key (kbd "s-.") 'avy-goto-word-or-subword-1)
(global-set-key (kbd "s-w") 'ace-window)
(global-set-key (kbd "C-x g") 'magit-status)
(global-set-key (kbd "C-c p") 'org-pomodoro)
(global-set-key (kbd "C-c l") 'org-store-link)
(global-set-key (kbd "C-c a") 'org-agenda)
(global-set-key (kbd "C-c l") 'org-store-link)
(global-set-key (kbd "C-c c") 'org-capture)
(global-set-key (kbd "C-x C-b") 'ibuffer)
(windmove-default-keybindings 'shift)
(provide '.emacs)
;;; .emacs ends here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment