Jellyfish a60361b7d0 made a new river tags widget for waybar, added C++ LSP support,
(probably need to look into LSP deeper to trim any fat)
2025-07-05 06:51:25 -07:00

10 lines
157 B
Lua

-- LSP servers
vim.lsp.enable('clangd')
vim.lsp.enable('pyright')
vim.lsp.enable('lua_ls')
-- Virtual text
vim.diagnostic.config({
virtual_text = true
})