From 666c8852046632e50da534f5abf616ea3dd66283 Mon Sep 17 00:00:00 2001 From: SALVIJER Date: Wed, 11 Sep 2024 16:13:53 +0200 Subject: [PATCH] splitting config for work or home --- lua/config/bufferline.lua | 6 +++--- lua/config/lsp/web.lua | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/config/bufferline.lua b/lua/config/bufferline.lua index 90a6ce8..c14198d 100644 --- a/lua/config/bufferline.lua +++ b/lua/config/bufferline.lua @@ -44,15 +44,15 @@ local opts = { bg = frappe.overlay0, }, modified = { - fg = frappe.text, + fg = frappe.green, bg = frappe.base, }, modified_visible = { - fg = frappe.text, + fg = frappe.green, bg = frappe.surface0, }, modified_selected = { - fg = frappe.text, + fg = frappe.green, bg = frappe.overlay0, }, separator = { diff --git a/lua/config/lsp/web.lua b/lua/config/lsp/web.lua index 688fb72..44a67cf 100644 --- a/lua/config/lsp/web.lua +++ b/lua/config/lsp/web.lua @@ -12,14 +12,14 @@ end mason_lspconfig.setup({ ensure_installed = { - "tsserver", + "ts_ls", "html", "emmet_ls", "cssls", }, }) -lspconfig.tsserver.setup({ +lspconfig.ts_ls.setup({ capabilities = require("config/lsp/lsp-capabilities"), on_attach = require("config/lsp/lsp-attach"), })