mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-23 04:27:36 +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
|
||||||
end
|
end
|
||||||
|
|
||||||
return require("packer").startup({function(use)
|
return require("packer").startup({
|
||||||
|
function(use)
|
||||||
-- Load things faster!
|
-- Load things faster!
|
||||||
use({ "lewis6991/impatient.nvim", config = [[require('impatient')]] })
|
use({ "lewis6991/impatient.nvim", config = [[require('impatient')]] })
|
||||||
|
|
||||||
@ -118,8 +119,18 @@ return require("packer").startup({function(use)
|
|||||||
use({
|
use({
|
||||||
"milkypostman/vim-togglelist",
|
"milkypostman/vim-togglelist",
|
||||||
config = function()
|
config = function()
|
||||||
vim.api.nvim_set_keymap("n", "<F6>", ":call ToggleQuickfixList()<CR>", { silent = true, noremap = true })
|
vim.api.nvim_set_keymap(
|
||||||
vim.api.nvim_set_keymap("n", "<F7>", ":call ToggleLocationList()<CR>", { silent = true, noremap = true })
|
"n",
|
||||||
|
"<F6>",
|
||||||
|
":call ToggleQuickfixList()<CR>",
|
||||||
|
{ silent = true, noremap = true }
|
||||||
|
)
|
||||||
|
vim.api.nvim_set_keymap(
|
||||||
|
"n",
|
||||||
|
"<F7>",
|
||||||
|
":call ToggleLocationList()<CR>",
|
||||||
|
{ silent = true, noremap = true }
|
||||||
|
)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -335,11 +346,12 @@ return require("packer").startup({function(use)
|
|||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require("packer").sync()
|
require("packer").sync()
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
config = {
|
config = {
|
||||||
display = {
|
display = {
|
||||||
open_fn = function()
|
open_fn = function()
|
||||||
return require("packer.util").float({ border = "single" })
|
return require("packer.util").float({ border = "single" })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}})
|
},
|
||||||
|
})
|
||||||
|
@ -205,5 +205,5 @@ function M.config_null_ls()
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
return M
|
return M
|
||||||
|
@ -114,7 +114,6 @@ function M.try_require(name, on_found, on_notfound)
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
Loading…
Reference in New Issue
Block a user