Compare commits

..

No commits in common. "1b0937ee8e1bc1b33ec906855970801b5664c550" and "9ad605774b08a00e2458b8a8e7222dc5e83b2fec" have entirely different histories.

3 changed files with 4 additions and 11 deletions

View file

@ -118,10 +118,7 @@ def MissingServers(): list<dict<any>>
enddef
export def LazyConfigure(): void
augroup lspLazyConfigure
autocmd!
autocmd VimEnter * ++once Configure()
augroup END
autocmd VimEnter * ++once Configure()
enddef
export def Configure(): void

View file

@ -2,10 +2,10 @@ vim9script
silent! packadd minpac
if !exists('g:loaded_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 VimEnter * ++once minpac#update()
augroup END
autocmd VimEnter * call minpac#update()
}
endif
packadd minpac

4
vimrc
View file

@ -1,8 +1,4 @@
vim9script
if &compatible
set nocompatible
endif
const xdg = {
XDG_CONFIG_HOME: '~/.config',
XDG_CACHE_HOME: '~/.cache',