Adding vim-argwrap
This commit is contained in:
parent
d11c3f444d
commit
89a3d2f7ea
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -61,3 +61,6 @@
|
|||||||
[submodule ".vim/bundle/vim-licenses"]
|
[submodule ".vim/bundle/vim-licenses"]
|
||||||
path = .vim/bundle/vim-licenses
|
path = .vim/bundle/vim-licenses
|
||||||
url = https://github.com/antoyo/vim-licenses.git
|
url = https://github.com/antoyo/vim-licenses.git
|
||||||
|
[submodule ".vim/bundle/vim-argwrap"]
|
||||||
|
path = .vim/bundle/vim-argwrap
|
||||||
|
url = https://github.com/FooSoft/vim-argwrap.git
|
||||||
|
1
.vim/bundle/vim-argwrap
Submodule
1
.vim/bundle/vim-argwrap
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit f07af29b995849b5577dea23db99246523970ba7
|
6
.vimrc
6
.vimrc
@ -5,7 +5,7 @@ let g:Tex_DefaultTargetFormat='pdf'
|
|||||||
let g:Tex_MultipleCompileFormats='pdf, aux'
|
let g:Tex_MultipleCompileFormats='pdf, aux'
|
||||||
let g:licenses_authors_name = 'Alex Yatskov <alex@foosoft.net>'
|
let g:licenses_authors_name = 'Alex Yatskov <alex@foosoft.net>'
|
||||||
let g:table_mode_corner='|'
|
let g:table_mode_corner='|'
|
||||||
let mapleader=","
|
let mapleader=','
|
||||||
|
|
||||||
call pathogen#infect()
|
call pathogen#infect()
|
||||||
call pathogen#helptags()
|
call pathogen#helptags()
|
||||||
@ -55,14 +55,14 @@ nnoremap <silent> <C-h> :bnext<CR>
|
|||||||
nnoremap <silent> <C-l> :bprev<CR>
|
nnoremap <silent> <C-l> :bprev<CR>
|
||||||
nnoremap <silent> <Leader>h :noh<CR>
|
nnoremap <silent> <Leader>h :noh<CR>
|
||||||
nnoremap <silent> <Leader>w gqip
|
nnoremap <silent> <Leader>w gqip
|
||||||
nnoremap <silent> <leader>g :call argumentrewrap#RewrapArguments()<CR>
|
nnoremap <silent> <leader>g :call argwrap#toggle()<CR>
|
||||||
nnoremap <silent> <leader>s :source %<CR>
|
nnoremap <silent> <leader>s :source %<CR>
|
||||||
nnoremap Q <Nop>
|
nnoremap Q <Nop>
|
||||||
|
|
||||||
vmap <Enter> <Plug>(EasyAlign)
|
vmap <Enter> <Plug>(EasyAlign)
|
||||||
nmap <Leader>a <Plug>(EasyAlign)
|
nmap <Leader>a <Plug>(EasyAlign)
|
||||||
|
|
||||||
if has("gui_running")
|
if has('gui_running')
|
||||||
set columns=150
|
set columns=150
|
||||||
set cursorline
|
set cursorline
|
||||||
set guioptions-=L
|
set guioptions-=L
|
||||||
|
Loading…
Reference in New Issue
Block a user