refactor(LSP): use the new vim.lsp.* functions to set up LSP servers

This commit is contained in:
2025-06-05 11:30:14 +02:00
parent c569c12ae7
commit e8ff3fed7c
29 changed files with 556 additions and 1744 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
local utils = require("ow.utils")
local util = require("ow.util")
local function override_highlights()
-- File Icon
local hl = utils.get_hl_source("NvimTreeFileIcon")
local hl = util.get_hl_source("NvimTreeFileIcon")
vim.api.nvim_set_hl(0, "NvimTreeFileIcon", { fg = hl.fg, bg = nil })
-- Symlink Icon
hl = utils.get_hl_source("NvimTreeSymlinkIcon")
hl = util.get_hl_source("NvimTreeSymlinkIcon")
vim.api.nvim_set_hl(0, "NvimTreeSymlinkIcon", { fg = hl.fg, bg = nil })
end