Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.33 KB

README.md

File metadata and controls

47 lines (33 loc) · 1.33 KB

eighties.vim

Automatically resizes your windows

Demo

Features

  • Resizes the width of the current window when switching
  • Calculates the minimum width (80 by default) + line numbers/signs/etc
  • Won't shrink the current window
  • Won't resize side panels (supports NERDTree and vimpanel)

Installation

If you don't already use a plugin manager, I recommend vim-plug

Plug 'justincampbell/vim-eighties'
Plugin 'justincampbell/vim-eighties'
cd ~/.vim/bundle
git clone git://github.com/justincampbell/vim-eighties.git

Configuration & Defaults

let g:eighties_enabled = 1
let g:eighties_minimum_width = 80
let g:eighties_extra_width = 0 " Increase this if you want some extra room
let g:eighties_compute = 1 " Disable this if you just want the minimum + extra
let g:eighties_bufname_additional_patterns = ['fugitiveblame'] " Defaults to [], 'fugitiveblame' is only an example. Takes a comma delimited list of bufnames as strings.