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

nvim: lazy load more plugins.

This commit is contained in:
Henrik Hautakoski 2024-09-05 21:58:08 +02:00
parent b80f1c0db6
commit b3add4670f
4 changed files with 4 additions and 0 deletions

View file

@ -93,6 +93,7 @@ return {
-- Snippets
{
"L3MON4D3/LuaSnip",
lazy = true,
dependencies = {
{
"rafamadriz/friendly-snippets",

View file

@ -24,6 +24,7 @@ return {
"nvim-telescope/telescope-ui-select.nvim",
"sharkdp/fd",
},
cmd = "Telescope",
opts = function()
local utils = require("user.utils.telescope")
local actions = require("telescope.actions")

View file

@ -1,5 +1,6 @@
return {
'MeanderingProgrammer/render-markdown.nvim',
ft = { "markdown" },
dependencies = {
'nvim-tree/nvim-web-devicons',
{

View file

@ -8,6 +8,7 @@ return {
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
cmd = "Neotree",
opts = {
-- hide_root_node = true,
popup_border_style = 'solid',