Run stylua again

This commit is contained in:
ViViDboarder 2021-12-16 14:43:02 -08:00
parent 7b3f69cf66
commit 3051f0b294
3 changed files with 286 additions and 275 deletions

View File

@ -28,7 +28,8 @@ if vim.fn.has("nvim-0.6.0") ~= 1 then
end
end
return require("packer").startup({function(use)
return require("packer").startup({
function(use)
-- Load things faster!
use({ "lewis6991/impatient.nvim", config = [[require('impatient')]] })
@ -118,8 +119,18 @@ return require("packer").startup({function(use)
use({
"milkypostman/vim-togglelist",
config = function()
vim.api.nvim_set_keymap("n", "<F6>", ":call ToggleQuickfixList()<CR>", { silent = true, noremap = true })
vim.api.nvim_set_keymap("n", "<F7>", ":call ToggleLocationList()<CR>", { silent = true, noremap = true })
vim.api.nvim_set_keymap(
"n",
"<F6>",
":call ToggleQuickfixList()<CR>",
{ silent = true, noremap = true }
)
vim.api.nvim_set_keymap(
"n",
"<F7>",
":call ToggleLocationList()<CR>",
{ silent = true, noremap = true }
)
end,
})
@ -335,11 +346,12 @@ return require("packer").startup({function(use)
if packer_bootstrap then
require("packer").sync()
end
end,
config = {
end,
config = {
display = {
open_fn = function()
return require("packer.util").float({ border = "single" })
end,
},
}})
},
})

View File

@ -205,5 +205,5 @@ function M.config_null_ls()
},
})
end)
end
end
return M

View File

@ -114,7 +114,6 @@ function M.try_require(name, on_found, on_notfound)
return nil
end
end
return M