Files
dotfiles/nvim/lua/plugins/twilight.lua
FaultyBranches 257dabd9bd fix: Large cleanup of formatting in plugins, re-enabling of gdb in DAP,
removing large portions of the render-markdown plugin settings as they
are just the defaults
2026-03-31 12:57:03 -05:00

19 lines
362 B
Lua

return {
'folke/twilight.nvim',
config = function()
require('twilight').setup({
dimming = {
alpha = 0.3,
},
expand = {
"function",
"method",
"table",
}
})
end,
keys = {
{ '<leader>f', ':Twilight<CR>' }
}
}