Skip to content

Instantly share code, notes, and snippets.

@kentaro
Created October 15, 2013 06:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentaro/6987374 to your computer and use it in GitHub Desktop.
Save kentaro/6987374 to your computer and use it in GitHub Desktop.
" vim-automatic
let g:automatic_config = [
\ {
\ "match" : {
\ "filetype" : "help",
\ "buftype" : "help",
\ },
\ "set" : {
\ "height" : "50%",
\ "move" : "bottom",
\ },
\ },
\ {
\ "match" : {
\ "filetype" : "quickrun",
\ },
\ "set" : {
\ "height" : "30%",
\ "move" : "bottom",
\ },
\ },
\ {
\ "match" : {
\ "bufname" : '[\[\*]unite[\]\*]',
\ },
\ "set" : {
\ "height" : "30%",
\ "move" : "bottom",
\ },
\ },
\ {
\ "match" : {
\ "bufname" : 'MacDictBuffer',
\ },
\ "set" : {
\ "is_close_focus_out" : 1,
\ },
\ },
\ {
\ "match" : {
\ "bufname" : "Godoc",
\ },
\ "set" : {
\ "height" : "40%",
\ "move" : "bottom",
\ },
\ },
\]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment