Add overseer.nvim and html lsp
This commit is contained in:
parent
fcdb824f52
commit
be104d5adc
10
init.lua
10
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()
|
||||
|
|
Loading…
Reference in New Issue