Compare commits

...

2 commits

2 changed files with 7 additions and 8 deletions

View file

@ -61,6 +61,7 @@ in
"cmake", "cmake",
"csharp_ls", "csharp_ls",
"cssls", "cssls",
"denols",
"eslint", "eslint",
"html", "html",
"jsonls", "jsonls",
@ -70,7 +71,7 @@ in
"rust_analyzer", "rust_analyzer",
"svelte", "svelte",
"taplo", "taplo",
"tsserver", "ts_ls",
"volar", "volar",
"yamlls", "yamlls",
}, },
@ -93,7 +94,7 @@ in
}, },
}, },
}, },
tsserver = { ts_ls = {
init_options = { init_options = {
plugins = { plugins = {
{ {
@ -108,6 +109,7 @@ in
"typescript", "typescript",
"vue", "vue",
}, },
root_dir = require("lspconfig.util").root_pattern("package.json"),
}, },
}, },
-- customize how language servers are attached -- customize how language servers are attached

View file

@ -26,6 +26,7 @@ return {
end, end,
}, },
-- Add the catppuccin colorscheme
{ {
"catppuccin/nvim", "catppuccin/nvim",
name = "catppuccin", name = "catppuccin",
@ -118,11 +119,6 @@ return {
"CursorColumn", "CursorColumn",
"CursorLineFold", "CursorLineFold",
"CursorLineSign", "CursorLineSign",
"DiagnosticSignError",
"DiagnosticSignHint",
"DiagnosticSignInfo",
"DiagnosticSignOk",
"DiagnosticSignWarn",
"FloatBorder", "FloatBorder",
"FoldColumn", "FoldColumn",
"Folded", "Folded",
@ -133,7 +129,6 @@ return {
"LineNrAbove", "LineNrAbove",
"LineNrBelow", "LineNrBelow",
"LineNrBelow", "LineNrBelow",
"NvimTreeWindowPicker",
"TabLine", "TabLine",
"TabLineFill", "TabLineFill",
"VertSplit", "VertSplit",
@ -143,7 +138,9 @@ return {
} }
transparent.clear_prefix("BufferLine") transparent.clear_prefix("BufferLine")
transparent.clear_prefix("Diagnostic")
transparent.clear_prefix("NeoTree") transparent.clear_prefix("NeoTree")
transparent.clear_prefix("NvimTree")
end, end,
}, },