Add purpose mode (WIP)
This commit is contained in:
parent
f4c93cc2bf
commit
044082974d
4 changed files with 14 additions and 1 deletions
2
emacs
2
emacs
|
|
@ -22,7 +22,7 @@
|
||||||
'(hl-paren-colors (quote ("#ecf0f1" "#ecf0f1" "#c0392b")))
|
'(hl-paren-colors (quote ("#ecf0f1" "#ecf0f1" "#c0392b")))
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
(quote
|
(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))))
|
'(safe-local-variable-values (quote ((encoding . utf-8))))
|
||||||
'(sml/active-background-color "#34495e")
|
'(sml/active-background-color "#34495e")
|
||||||
'(sml/active-foreground-color "#ecf0f1")
|
'(sml/active-foreground-color "#ecf0f1")
|
||||||
|
|
|
||||||
1
init.el
1
init.el
|
|
@ -8,6 +8,7 @@
|
||||||
(load "~/.emacs.d/key-bindings.elc")
|
(load "~/.emacs.d/key-bindings.elc")
|
||||||
(load "~/.emacs.d/spelling.elc")
|
(load "~/.emacs.d/spelling.elc")
|
||||||
(load "~/.emacs.d/languages.elc")
|
(load "~/.emacs.d/languages.elc")
|
||||||
|
(load "~/.emacs.d/windows.elc")
|
||||||
|
|
||||||
(provide 'init)
|
(provide 'init)
|
||||||
;;; init.el ends here
|
;;; init.el ends here
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,11 @@
|
||||||
(package-refresh-contents)
|
(package-refresh-contents)
|
||||||
(package-install 'aggressive-indent))
|
(package-install 'aggressive-indent))
|
||||||
|
|
||||||
|
;; Window management
|
||||||
|
(unless (package-installed-p 'window-purpose)
|
||||||
|
(package-refresh-contents)
|
||||||
|
(package-install 'window-purpose))
|
||||||
|
|
||||||
;; Project management
|
;; Project management
|
||||||
(unless (package-installed-p 'projectile)
|
(unless (package-installed-p 'projectile)
|
||||||
(package-refresh-contents)
|
(package-refresh-contents)
|
||||||
|
|
|
||||||
7
windows.el
Normal file
7
windows.el
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
;;; windows.el -- summary
|
||||||
|
;;; Commentary:
|
||||||
|
;;; Windows management things, mostly with purpose
|
||||||
|
;;; Code:
|
||||||
|
(purpose-mode)
|
||||||
|
|
||||||
|
;;; windows.el ends here
|
||||||
Loading…
Add table
Add a link
Reference in a new issue