mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
180 B
Lua
10 lines
180 B
Lua
-- https://github.com/simrat39/symbols-outline.nvim
|
|
local status_ok, outline = pcall(require, "symbols-outline")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
outline.setup({
|
|
width = 25,
|
|
})
|