added html plugins and core options file

This commit is contained in:
2023-10-18 10:16:15 +02:00
parent d5ec01da3f
commit 5c63bbe2d6
5 changed files with 37 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
local status, plugin = pcall(require, 'nvim-ts-autotag')
if not status then
print('Error with plugin: ', plugin)
return
end
plugin.setup({
autotag = {
enable = true,
}
})

View File

@@ -49,7 +49,4 @@ plugin.setup({
},
-- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
},
})
-- setup must be called before loading
vim.cmd.colorscheme "catppuccin"
})

View File

@@ -1,4 +1,4 @@
local status, plugin = pcall(require,'indent_blankline')
local status, plugin = pcall(require,'ibl')
if not status then
print('Error with plugin: ', plugin)
return