45 lines
887 B
Lua
45 lines
887 B
Lua
return {
|
|
{
|
|
"stevearc/conform.nvim",
|
|
-- event = 'BufWritePre', -- uncomment for format on save
|
|
opts = require "configs.conform",
|
|
},
|
|
|
|
-- These are some examples, uncomment them if you want to see them work!
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
config = function()
|
|
require "configs.lspconfig"
|
|
end,
|
|
},
|
|
|
|
{
|
|
event = "VeryLazy",
|
|
"natecraddock/workspaces.nvim",
|
|
config = function()
|
|
require("workspaces").setup()
|
|
end
|
|
},
|
|
|
|
{
|
|
"nvim-tree/nvim-tree.lua",
|
|
opts = function()
|
|
local conf = require "nvchad.configs.nvimtree"
|
|
conf.renderer.group_empty = true
|
|
return conf
|
|
end
|
|
},
|
|
-- test new blink
|
|
-- { import = "nvchad.blink.lazyspec" },
|
|
|
|
-- {
|
|
-- "nvim-treesitter/nvim-treesitter",
|
|
-- opts = {
|
|
-- ensure_installed = {
|
|
-- "vim", "lua", "vimdoc",
|
|
-- "html", "css"
|
|
-- },
|
|
-- },
|
|
-- },
|
|
}
|