aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/lua/plugins/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'vim/lua/plugins/init.lua')
-rw-r--r--vim/lua/plugins/init.lua23
1 files changed, 13 insertions, 10 deletions
diff --git a/vim/lua/plugins/init.lua b/vim/lua/plugins/init.lua
index 2342d18..12f74f8 100644
--- a/vim/lua/plugins/init.lua
+++ b/vim/lua/plugins/init.lua
@@ -194,22 +194,25 @@ return {
194 -- } 194 -- }
195 -- }, 195 -- },
196 196
197 -- These are some examples, uncomment them if you want to see them work! 197 {
198 -- { 198 "neovim/nvim-lspconfig",
199 -- "neovim/nvim-lspconfig", 199 lazy = false,
200 -- config = function() 200 config = function()
201 -- require("nvchad.configs.lspconfig").defaults() 201 require("nvchad.configs.lspconfig").defaults()
202 -- require "configs.lspconfig" 202 require "configs.lspconfig"
203 -- end, 203 end,
204 -- }, 204 },
205 -- 205 --
206 { 206 {
207 "williamboman/mason.nvim", 207 "williamboman/mason.nvim",
208 opts = { 208 opts = {
209 automatically_installation = true, 209 automatically_installation = true,
210 ensure_installed = { 210 ensure_installed = {
211 "lua-language-server", "stylua", 211 "css-lsp",
212 "html-lsp", "css-lsp", "prettier" 212 "html-lsp",
213 "lua-language-server",
214 "prettier",
215 "stylua",
213 }, 216 },
214 }, 217 },
215 }, 218 },