Add purpose mode (WIP)

This commit is contained in:
Maciej Szlosarczyk 2017-08-23 16:48:36 +03:00
parent f4c93cc2bf
commit 044082974d
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
4 changed files with 14 additions and 1 deletions

2
emacs
View file

@ -22,7 +22,7 @@
'(hl-paren-colors (quote ("#ecf0f1" "#ecf0f1" "#c0392b")))
'(package-selected-packages
(quote
(rspec-mode robe elm-yasnippets elm-mode company-jedi pyenv pyenv-mode toml-mode color-theme-approximate smex yaml-mode web-mode ujelly-theme smart-mode-line scala-mode rvm ruby-end rainbow-mode rainbow-delimiters racer noctilux-theme monokai-theme markdown-mode less-css-mode json-reformat jade-mode indent-guide helm-themes helm-projectile helm-ag haskell-mode haml-mode groovy-mode flycheck flatui-theme exec-path-from-shell evil-nerd-commenter evil-magit evil-leader elpy dumb-jump dockerfile-mode diff-hl column-enforce-mode base16-theme avk-emacs-themes atom-one-dark-theme all-the-icons alchemist aggressive-indent ag)))
(window-purpose rspec-mode robe elm-yasnippets elm-mode company-jedi pyenv pyenv-mode toml-mode color-theme-approximate smex yaml-mode web-mode ujelly-theme smart-mode-line scala-mode rvm ruby-end rainbow-mode rainbow-delimiters racer noctilux-theme monokai-theme markdown-mode less-css-mode json-reformat jade-mode indent-guide helm-themes helm-projectile helm-ag haskell-mode haml-mode groovy-mode flycheck flatui-theme exec-path-from-shell evil-nerd-commenter evil-magit evil-leader elpy dumb-jump dockerfile-mode diff-hl column-enforce-mode base16-theme avk-emacs-themes atom-one-dark-theme all-the-icons alchemist aggressive-indent ag)))
'(safe-local-variable-values (quote ((encoding . utf-8))))
'(sml/active-background-color "#34495e")
'(sml/active-foreground-color "#ecf0f1")

View file

@ -8,6 +8,7 @@
(load "~/.emacs.d/key-bindings.elc")
(load "~/.emacs.d/spelling.elc")
(load "~/.emacs.d/languages.elc")
(load "~/.emacs.d/windows.elc")
(provide 'init)
;;; init.el ends here

View file

@ -52,6 +52,11 @@
(package-refresh-contents)
(package-install 'aggressive-indent))
;; Window management
(unless (package-installed-p 'window-purpose)
(package-refresh-contents)
(package-install 'window-purpose))
;; Project management
(unless (package-installed-p 'projectile)
(package-refresh-contents)

7
windows.el Normal file
View file

@ -0,0 +1,7 @@
;;; windows.el -- summary
;;; Commentary:
;;; Windows management things, mostly with purpose
;;; Code:
(purpose-mode)
;;; windows.el ends here