summaryrefslogtreecommitdiff
path: root/vim/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vim/.vimrc')
-rw-r--r--vim/.vimrc18
1 files changed, 3 insertions, 15 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index 72e0847..35d4a48 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -60,6 +60,7 @@ 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 '~/Dropbox/projects/vim-wintab'
@@ -382,6 +383,8 @@ inoreabbrev <expr> #!! "#!/usr/bin/env" . (empty(&filetype) ? '' : ' '.&filetype
" Spell
inoremap <c-s> <esc>1z=eA
+nmap co =o
+
" }}}
"" Colorscheme {{{
function! SaveColo(...)
@@ -525,18 +528,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>
-" }}}