summaryrefslogtreecommitdiff
path: root/vim/.vimrc
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2018-04-14 22:52:29 +0100
committerUrbain Vaes <urbain@vaes.uk>2018-04-14 22:52:29 +0100
commit1ed3c86834671e305ccf3ed0cf554c0a2511ddd3 (patch)
treef456e5f9a648f56cd33ce4449deedcd1ec1c59f4 /vim/.vimrc
parentcf9e107d63698de12a42081e7e49e59afbae7aff (diff)
Remove custom zoom
Diffstat (limited to 'vim/.vimrc')
-rw-r--r--vim/.vimrc19
1 files changed, 3 insertions, 16 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index a50e392..a84c062 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -59,8 +59,10 @@ Plug 'tpope/vim-scriptease'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
+Plug 'troydm/zoomwintab.vim'
Plug 'urbainvaes/vim-remembrall'
-Plug 'urbainvaes/vim-wintab'
+" Plug 'urbainvaes/vim-wintab'
+Plug '~/Dropbox/projects/vim-wintab'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'vim-scripts/ReplaceWithRegister'
@@ -516,18 +518,3 @@ if has("nvim")
nnoremap <A-l> <C-w>l
endif
" }}}
-"" Zoom / Restore window {{{
-function! s:ZoomToggle() abort
- if exists('t:zoomed') && t:zoomed
- execute t:zoom_winrestcmd
- let t:zoomed = 0
- else
- let t:zoom_winrestcmd = winrestcmd()
- resize
- vertical resize
- let t:zoomed = 1
- endif
-endfunction
-command! ZoomToggle call s:ZoomToggle()
-nnoremap <silent> <c-w>o :ZoomToggle<CR>
-" }}}