From be104d5adc63f2a29917ddcae7c1800bc65954d9 Mon Sep 17 00:00:00 2001 From: Alexandre Ignjatovic Date: Wed, 25 Sep 2024 23:44:48 +0200 Subject: [PATCH] Add overseer.nvim and html lsp --- init.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/init.lua b/init.lua index 0f153117..2f17bbc4 100644 --- a/init.lua +++ b/init.lua @@ -671,6 +671,7 @@ require('lazy').setup({ -- But for many setups, the LSP (`ts_ls`) will work just fine -- ts_ls = {}, -- + -- html = { filetypes = { 'html', 'eruby' } }, lua_ls = { -- cmd = { ... }, @@ -903,6 +904,15 @@ require('lazy').setup({ -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, + -- A task runner and job management plugin for Neovim + { + 'stevearc/overseer.nvim', + opts = {}, + config = function() + require('overseer').setup() + end, + }, + { -- Collection of various small independent plugins/modules 'echasnovski/mini.nvim', config = function()