1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00

nvim/lua/user/plugins: lazy-load more UI and editor plugins

This commit is contained in:
Henrik Hautakoski 2026-05-18 23:32:18 +02:00
parent 3e73c3349b
commit f56905441c
4 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,6 @@
return {
'kevinhwang91/nvim-ufo',
event = "BufEnter",
dependencies = {
'kevinhwang91/promise-async',
},

View file

@ -2,7 +2,7 @@ local icons = require('user.icons')
return {
'saghen/blink.cmp',
lazy = false,
event = "InsertEnter",
version = "1.*",
dependencies = {
{ "xzbdmw/colorful-menu.nvim" },

View file

@ -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
}
},
},

View file

@ -93,6 +93,7 @@ local options = {
return {
'nvim-tree/nvim-tree.lua',
cmd = "NvimTreeFocus",
opts = options,
config = function (_, opts)
require('nvim-tree').setup(opts)