aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'vim/lua')
-rw-r--r--vim/lua/configs/conform.lua3
-rw-r--r--vim/lua/plugins/init.lua23
2 files changed, 15 insertions, 11 deletions
diff --git a/vim/lua/configs/conform.lua b/vim/lua/configs/conform.lua
index 3553caf..1b6683b 100644
--- a/vim/lua/configs/conform.lua
+++ b/vim/lua/configs/conform.lua
@@ -3,7 +3,8 @@ local options = {
3 lua = { "stylua" }, 3 lua = { "stylua" },
4 css = { "prettier" }, 4 css = { "prettier" },
5 html = { "prettier" }, 5 html = { "prettier" },
6 markdown = { "prettier" } 6 markdown = { "prettier" },
7 sh = {"shfmt"},
7 }, 8 },
8 9
9 -- format_on_save = { 10 -- format_on_save = {
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 },