123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- ;;; package --- Conf Popwin
- ;;;
- ;;; Commentary:
- ;;; Configuration for helm
- ;;;
- ;;; Code:
- ;;TODO: test better way to load configuration for popwin
- (require 'popwin)
- (popwin-mode 1)
- ;; Helm
- (setq display-buffer-alist 'popwin:display-buffer)
- (push '("helm" :regexp t :height 0.3) popwin:special-display-config)
- ;; M-x dired-jump-other-window
- (push '(dired-mode :position top) popwin:special-display-config)
- ;; M-!
- (push "*Shell Command Output*" popwin:special-display-config)
- ;; M-x compile
- (push '(compilation-mode :noselect t) popwin:special-display-config)
- ;; slime
- (push "*slime-apropos*" popwin:special-display-config)
- (push "*slime-macroexpansion*" popwin:special-display-config)
- (push "*slime-description*" popwin:special-display-config)
- (push '("*slime-compilation*" :noselect t) popwin:special-display-config)
- (push "*slime-xref*" popwin:special-display-config)
- (push '(sldb-mode :stick t) popwin:special-display-config)
- (push 'slime-repl-mode popwin:special-display-config)
- (push 'slime-connection-list-mode popwin:special-display-config)
- ;; vc
- (push "*vc-diff*" popwin:special-display-config)
- (push "*vc-change-log*" popwin:special-display-config)
- ;; Django
- (push '("Django:" :regexp t :width 0.3 :position right) popwin:special-display-config)
- ;; undo-tree
- (push '("*undo-tree*" :width 0.3 :position right) popwin:special-display-config)
- ;;ibuffer
- (push "*Ibuffer*" popwin:special-display-config)
- ;; Kill ring
- (require 'popwin-browse-kill-ring)
- (push "*Kill Ring*" popwin:special-display-config)
- ;;Terminal
- (require 'popwin-term)
- (push '(term-mode :position :top :height 10 :stick t) popwin:special-display-config)
- ;; Backtrace
- (push '("*Backtrace*" :height 0.3 ) popwin:special-display-config)
- ;; Messages
- (push '("*Messages*" :height 0.3 ) popwin:special-display-config)
- ;; Compile-Log
- (push '("*Compile-Log*" :height 0.3 ) popwin:special-display-config)
- ;; Direx
- (push '(direx:direx-mode :position left :width 35 :dedicated t)
- popwin:special-display-config)
- ;; Flycheck
- (push '(flycheck-error-list-mode :stick t) popwin:special-display-config)
- ;;Others
- (push '("collected.org" :position top :height 15) popwin:special-display-config)
- (push '("*grep*" :position bottom :height 20 :stick t) popwin:special-display-config)
- (push '("*imenu-tree*" :position left :width 50 :stick t) popwin:special-display-config)
- (push '("*quickrun*" :height 0.3 :stick t) popwin:special-display-config)
- ;; popwin settings
- (setq popwin:special-display-config
- '(("*Help*" :height 03 :stick t)
- ("*Completions*" :height 0.4 :noselect t)
- ("*compilation*" :height 0.4 :noselect t :stick t)
- ("*Messages*")
- ("*Occur*" :height 0.3 t)
- ("\\*Slime Description.*" :noselect t :regexp t :height 30)
- ("magit" :regexp t :height 0.3)
- ("*magit-commit*" :noselect t :height 0.3 :width 80 :stick t)
- ("*magit-diff*" :noselect t :height 0.3 :width 80)
- ("*magit-edit-log*" :noselect t :height 0.2 :width 80)
- ("*magit-process*" :noselect t :height 0.2 :width 80)
- ("\\*Slime Inspector.*" :regexp t :height 30)
- ("*Ido Completions*" :noselect t :height 0.3)
- ;;("*eshell*" :height 0.3)
- ("\\*ansi-term\\*.*" :regexp t :height 0.3)
- ("*shell*" :height 0.3)
- (".*overtone.log" :regexp t :height 30)
- ("*gists*" :height 0.3)
- ("*sldb.*":regexp t :height 30)
- ("*Gofmt Errors*" :noselect t)
- ("\\*godoc*" :regexp t :height 30)
- ("*nrepl-error*" :height 20 :stick t)
- ("*nrepl-doc*" :height 20 :stick t)
- ("*nrepl-src*" :height 20 :stick t)
- ("*Kill Ring*" :height 30)
- ("*project-status*" :noselect t)
- ("*Compile-Log" :height 20 :stick t)
- ("*pytest*" :noselect t)
- ("*Python*" :stick t)
- ("*jedi:doc*" :noselect t)
- )
- )
- (provide 'conf-popwin)
- ;;; conf-popwin.el ends here
|