mirror of https://github.com/gabehf/nvim-conf.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
809 B
39 lines
809 B
return {
|
|
{
|
|
"stevearc/conform.nvim",
|
|
-- event = 'BufWritePre', -- uncomment for format on save
|
|
config = function()
|
|
require "configs.conform"
|
|
end,
|
|
},
|
|
|
|
-- These are some examples, uncomment them if you want to see them work!
|
|
-- {
|
|
-- "neovim/nvim-lspconfig",
|
|
-- config = function()
|
|
-- require("nvchad.configs.lspconfig").defaults()
|
|
-- require "configs.lspconfig"
|
|
-- end,
|
|
-- },
|
|
--
|
|
-- {
|
|
-- "williamboman/mason.nvim",
|
|
-- opts = {
|
|
-- ensure_installed = {
|
|
-- "lua-language-server", "stylua",
|
|
-- "html-lsp", "css-lsp" , "prettier"
|
|
-- },
|
|
-- },
|
|
-- },
|
|
--
|
|
-- {
|
|
-- "nvim-treesitter/nvim-treesitter",
|
|
-- opts = {
|
|
-- ensure_installed = {
|
|
-- "vim", "lua", "vimdoc",
|
|
-- "html", "css"
|
|
-- },
|
|
-- },
|
|
-- },
|
|
}
|