summaryrefslogtreecommitdiff
path: root/lua/user/lsp/settings/html.lua
blob: d10da499a2c5aab98eec34a76c5bcdae782e5858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
return {
	settings = {

    html = {
      filetypes = { 'html' },
      init_options = { 
        configurationSection = {"html", "css", "javascript" }, 
        embeddedLanguages = {
             css = true,
             javascript = true,
        }, 
        provideFormatter = true
      },
    single_file_support = true,
    }
  }
}