diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-03-23 23:25:33 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-03-23 23:25:33 +0000 |
commit | c96931ff008e7be08fbfc6287d3af8fcb2205006 (patch) | |
tree | 76d6c512816163ff025d664a667e2587958face3 /vim/vimrc | |
parent | e1145d4fa9cad91e2e1e5d63151b802b9039adcd (diff) |
Update hook website
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -27,6 +27,9 @@ Plug 'honza/vim-snippets' Plug 'jamessan/vim-gnupg' Plug 'junegunn/seoul256.vim' Plug 'junegunn/vim-easy-align' +xmap ga <Plug>(EasyAlign) +nmap ga <Plug>(EasyAlign) + Plug 'junegunn/vim-peekaboo' Plug 'junegunn/vim-pseudocl' Plug 'junegunn/vim-oblique' @@ -71,7 +74,10 @@ Plug 'tpope/vim-commentary' Plug 'tpope/vim-dispatch' Plug 'tpope/vim-eunuch' Plug 'tpope/vim-flagship' -function Mixed_indent() +let g:tabprefix = "" +let g:tablabel = "%N%{flagship#tabmodified()} %{flagship#tabcwds('shorten',',')}" + +function! Mixed_indent() let l:spaces=search('\v(^ +)','n') let l:tabs=search('\v(^\t+)','n') return (l:spaces * l:tabs > 0) @@ -134,7 +140,6 @@ call plug#end() let g:tex_conceal= 'adgm' let g:tex_flavor='latex' -let g:tabprefix = "" "" Vim options @@ -273,7 +278,7 @@ if has("nvim") nnoremap <a-w> :w<cr> nnoremap <a-d> :q<cr> - nnoremap <a-cr> :tabnew<cr> + nnoremap <a-t> :tabnew<cr> nnoremap <a-b> :CtrlPBuffer<cr> nnoremap <a-f> :CtrlP<cr> |