This commit is contained in:
rohith 2025-02-22 09:46:02 +05:30
parent 2c86cd9d4b
commit 278cf40e30
24 changed files with 237 additions and 1805 deletions

25
lua/plugins/init.lua Normal file
View file

@ -0,0 +1,25 @@
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,
},
-- {
-- "nvim-treesitter/nvim-treesitter",
-- opts = {
-- ensure_installed = {
-- "vim", "lua", "vimdoc",
-- "html", "css"
-- },
-- },
-- },
}