nvchad/lua/plugins/init.lua

52 lines
1.2 KiB
Lua
Raw Permalink Normal View History

2024-03-09 11:03:44 -05:00
return {
{
"stevearc/conform.nvim",
2024-03-26 05:44:58 -04:00
-- 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",
2024-03-09 11:03:44 -05:00
config = function()
require "configs.lspconfig"
2024-03-09 11:03:44 -05:00
end,
},
{
'nvim-telescope/telescope.nvim',
requires = { {'nvim-lua/plenary.nvim'} },
config = function()
require('telescope').setup {
defaults = {
-- Your default configuration for Telescope (optional)
}
}
end
},
2024-11-14 17:00:06 -05:00
{
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
config = function()
require'nvim-treesitter.configs'.setup {
-- Enable Treesitter syntax highlighting
ensure_installed = { "markdown", "sql","vim",
"lua", "vimdoc", "html", "css" }, -- add other languages if needed
highlight = {
enable = true,
additional_vim_regex_highlighting = { "markdown" },
},
}
end,
},
2024-03-17 21:04:01 -04:00
-- {
-- "nvim-treesitter/nvim-treesitter",
-- opts = {
-- ensure_installed = {
2024-03-24 12:45:42 -04:00
-- "vim", "lua", "vimdoc",
2024-03-17 21:04:01 -04:00
-- "html", "css"
-- },
-- },
-- },
2024-03-09 11:03:44 -05:00
}