misc & cleanup

This commit is contained in:
siduck 2023-03-08 18:57:54 +05:30
parent a3ea8a9f4d
commit 0aafb002b5
5 changed files with 33 additions and 55 deletions

View file

@ -21,10 +21,7 @@ M.blankline = {
}
M.luasnip = function()
local options = {
history = true,
updateevents = "TextChanged,TextChangedI",
}
local options = { history = true, updateevents = "TextChanged,TextChangedI" }
require("luasnip").config.set_config(options)

View file

@ -99,7 +99,7 @@ local default_plugins = {
if vim.v.shell_error == 0 then
vim.api.nvim_del_augroup_by_name "GitSignsLazyLoad"
vim.schedule(function()
require("lazy").load { plugins = "gitsigns.nvim" }
require("lazy").load { plugins = { "gitsigns.nvim" } }
end)
end
end,