Automatically resizes your windows
- 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)
- Additional bufname entries can be specified as an array. See Configuration & Defaults
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
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.