mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 23:47:34 +00:00
Run stylua again
This commit is contained in:
parent
7b3f69cf66
commit
3051f0b294
@ -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,
|
||||
})
|
||||
|
||||
@ -342,4 +353,5 @@ config = {
|
||||
return require("packer.util").float({ border = "single" })
|
||||
end,
|
||||
},
|
||||
}})
|
||||
},
|
||||
})
|
||||
|
@ -114,7 +114,6 @@ function M.try_require(name, on_found, on_notfound)
|
||||
|
||||
return nil
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
return M
|
||||
|
Loading…
Reference in New Issue
Block a user