mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
nvim/lua/user/plugins: lazy-load more UI and editor plugins
This commit is contained in:
parent
3e73c3349b
commit
f56905441c
4 changed files with 10 additions and 3 deletions
|
|
@ -19,6 +19,7 @@ return {
|
|||
-- Icons
|
||||
{
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
lazy = true,
|
||||
opts = {
|
||||
override = {
|
||||
php = {
|
||||
|
|
@ -62,8 +63,12 @@ return {
|
|||
},
|
||||
},
|
||||
select = {
|
||||
backend = { "telescope" },
|
||||
telescope = require("telescope.themes").get_dropdown(ui.dropdown),
|
||||
get_config = function(_)
|
||||
return {
|
||||
backend = 'telescope',
|
||||
telescope = require("telescope.themes").get_dropdown(ui.dropdown)
|
||||
}
|
||||
end
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue