mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
syntax fix
This commit is contained in:
parent
89d4038d57
commit
d693496fe9
2 changed files with 2 additions and 3 deletions
|
|
@ -9,8 +9,8 @@ end
|
|||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
group = augroup("autoupdate"),
|
||||
callback = function()
|
||||
if require("lazy.status").has_updates then
|
||||
require("lazy").update({ show = true })
|
||||
if require("lazy.status").has_updates() then
|
||||
require("lazy").update({ show = true, })
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
-- Options are automatically loaded before lazy.nvim startup
|
||||
-- Add any additional options here
|
||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||
|
||||
local g, opt = vim.g, vim.opt
|
||||
|
||||
g.autoformat = false -- disable LazyVim autoformat on save
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue