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.lua41
1 files changed, 31 insertions, 10 deletions
diff --git a/vim/lua/plugins/init.lua b/vim/lua/plugins/init.lua
index 132f1a2..5e00a5b 100644
--- a/vim/lua/plugins/init.lua
+++ b/vim/lua/plugins/init.lua
@@ -166,8 +166,6 @@ return {
166 166
167 { 167 {
168 'stevearc/aerial.nvim', 168 'stevearc/aerial.nvim',
169 lazy = false,
170 event = { "BufReadPost", "BufWritePost", "BufNewFile" },
171 opts = { 169 opts = {
172 on_attach = function(bufnr) 170 on_attach = function(bufnr)
173 -- Jump forwards/backwards with '{' and '}' 171 -- Jump forwards/backwards with '{' and '}'
@@ -206,13 +204,36 @@ return {
206 -- end, 204 -- end,
207 -- }, 205 -- },
208 -- 206 --
207 {
208 "williamboman/mason.nvim",
209 opts = {
210 ensure_installed = {
211 "lua-language-server", "stylua",
212 "html-lsp", "css-lsp", "prettier"
213 },
214 },
215 },
216
217 {
218 'numToStr/Comment.nvim',
219 lazy = false,
220 opts = {
221 toggler = {
222 line = '<C-/>',
223 block = 'gb',
224 },
225 opleader = {
226 line = '<C-/>',
227 block = 'gb',
228 },
229 },
230 },
231
232
209 -- { 233 -- {
210 -- "williamboman/mason.nvim", 234 -- 'akinsho/bufferline.nvim',
211 -- opts = { 235 -- lazy = false,
212 -- ensure_installed = { 236 -- version = "*",
213 -- "lua-language-server", "stylua", 237 -- dependencies = 'nvim-tree/nvim-web-devicons'
214 -- "html-lsp", "css-lsp" , "prettier" 238 -- }
215 -- },
216 -- },
217 -- },
218} 239}