Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/user/lsp/lspsaga.lua
2022-07-09 13:17:26 -07:00

13 lines
225 B
Lua

local status_ok, lspsaga = pcall(require, "lspsaga")
if not status_ok then
return
end
lspsaga.init_lsp_saga({
symbol_in_winbar = {
enable = true,
separator = "",
show_file = true,
click_support = false,
},
})