Compare commits
No commits in common. "1b0937ee8e1bc1b33ec906855970801b5664c550" and "9ad605774b08a00e2458b8a8e7222dc5e83b2fec" have entirely different histories.
1b0937ee8e
...
9ad605774b
3 changed files with 4 additions and 11 deletions
|
@ -118,10 +118,7 @@ def MissingServers(): list<dict<any>>
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
export def LazyConfigure(): void
|
export def LazyConfigure(): void
|
||||||
augroup lspLazyConfigure
|
autocmd VimEnter * ++once Configure()
|
||||||
autocmd!
|
|
||||||
autocmd VimEnter * ++once Configure()
|
|
||||||
augroup END
|
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
export def Configure(): void
|
export def Configure(): void
|
||||||
|
|
|
@ -2,10 +2,10 @@ vim9script
|
||||||
silent! packadd minpac
|
silent! packadd minpac
|
||||||
if !exists('g:loaded_minpac')
|
if !exists('g:loaded_minpac')
|
||||||
silent !git clone https://github.com/k-takata/minpac.git $XDG_CACHE_HOME/vim/pack/minpac/opt/minpac
|
silent !git clone https://github.com/k-takata/minpac.git $XDG_CACHE_HOME/vim/pack/minpac/opt/minpac
|
||||||
augroup minpac
|
augroup minpac {
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd VimEnter * ++once minpac#update()
|
autocmd VimEnter * call minpac#update()
|
||||||
augroup END
|
}
|
||||||
endif
|
endif
|
||||||
packadd minpac
|
packadd minpac
|
||||||
|
|
||||||
|
|
4
vimrc
4
vimrc
|
@ -1,8 +1,4 @@
|
||||||
vim9script
|
vim9script
|
||||||
if &compatible
|
|
||||||
set nocompatible
|
|
||||||
endif
|
|
||||||
|
|
||||||
const xdg = {
|
const xdg = {
|
||||||
XDG_CONFIG_HOME: '~/.config',
|
XDG_CONFIG_HOME: '~/.config',
|
||||||
XDG_CACHE_HOME: '~/.cache',
|
XDG_CACHE_HOME: '~/.cache',
|
||||||
|
|
Loading…
Reference in a new issue