mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 05:51:04 +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", {
|
vim.api.nvim_create_autocmd("VimEnter", {
|
||||||
group = augroup("autoupdate"),
|
group = augroup("autoupdate"),
|
||||||
callback = function()
|
callback = function()
|
||||||
if require("lazy.status").has_updates then
|
if require("lazy.status").has_updates() then
|
||||||
require("lazy").update({ show = true })
|
require("lazy").update({ show = true, })
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
-- Options are automatically loaded before lazy.nvim startup
|
-- Options are automatically loaded before lazy.nvim startup
|
||||||
-- Add any additional options here
|
-- Add any additional options here
|
||||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
-- 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
|
local g, opt = vim.g, vim.opt
|
||||||
|
|
||||||
g.autoformat = false -- disable LazyVim autoformat on save
|
g.autoformat = false -- disable LazyVim autoformat on save
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue