From 1cdc708dd4d5ebf21e26ef73566a07d78661da2f Mon Sep 17 00:00:00 2001 From: Darius Auding <Darius.auding@gmx.de> Date: Wed, 5 Jul 2023 20:27:54 +0200 Subject: [PATCH] Change colorscheme to catpuccin --- lua/codecraft/core/colorscheme.lua | 2 +- lua/codecraft/plugin/lsp/lsp.lua | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lua/codecraft/core/colorscheme.lua b/lua/codecraft/core/colorscheme.lua index 84d4afc..8e60edf 100644 --- a/lua/codecraft/core/colorscheme.lua +++ b/lua/codecraft/core/colorscheme.lua @@ -15,4 +15,4 @@ -- onedark -- catppuccin -vim.cmd[[colorscheme onedark]] +vim.cmd([[colorscheme catppuccin]]) diff --git a/lua/codecraft/plugin/lsp/lsp.lua b/lua/codecraft/plugin/lsp/lsp.lua index 2834e17..9b7ad01 100644 --- a/lua/codecraft/plugin/lsp/lsp.lua +++ b/lua/codecraft/plugin/lsp/lsp.lua @@ -55,7 +55,13 @@ end -- the `settings` field of the server config. You must look up that documentation yourself. local servers = { clangd = {}, - html = {}, + html = { + format = { + indentHandlebars = true, + indentInnerHtml = true, + templating = true, + }, + }, emmet_ls = {}, cssls = {}, tsserver = {}, -- GitLab