[nvim] Update plug
This commit is contained in:
parent
b674ab3a6c
commit
f031a06fb7
@ -242,6 +242,8 @@ function! plug#begin(...)
|
||||
let home = s:path(s:plug_fnamemodify(s:plug_expand(a:1), ':p'))
|
||||
elseif exists('g:plug_home')
|
||||
let home = s:path(g:plug_home)
|
||||
elseif has('nvim')
|
||||
let home = stdpath('data') . '/plugged'
|
||||
elseif !empty(&rtp)
|
||||
let home = s:path(split(&rtp, ',')[0]) . '/plugged'
|
||||
else
|
||||
@ -405,7 +407,7 @@ function! plug#end()
|
||||
|
||||
for [map, names] in items(lod.map)
|
||||
for [mode, map_prefix, key_prefix] in
|
||||
\ [['i', '<C-O>', ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']]
|
||||
\ [['i', '<C-\><C-O>', ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']]
|
||||
execute printf(
|
||||
\ '%snoremap <silent> %s %s:<C-U>call <SID>lod_map(%s, %s, %s, "%s")<CR>',
|
||||
\ mode, map, map_prefix, string(map), string(names), mode != 'i', key_prefix)
|
||||
|
@ -55,6 +55,8 @@ set tabstop=4 shiftwidth=4 noexpandtab
|
||||
autocmd BufRead,BufNewFile *.py set tabstop=4 shiftwidth=4 noexpandtab
|
||||
autocmd BufRead,BufNewFile *.yml set tabstop=2 shiftwidth=2 expandtab
|
||||
autocmd BufRead,BufNewFile *.yaml set tabstop=2 shiftwidth=2 expandtab
|
||||
autocmd BufRead,BufNewFile *.ts set tabstop=2 shiftwidth=2 expandtab
|
||||
autocmd BufRead,BufNewFile *.vue set tabstop=2 shiftwidth=2 expandtab
|
||||
|
||||
" Disable auto newlines
|
||||
set wrap
|
||||
|
Loading…
Reference in New Issue
Block a user