You've already forked dotfiles
removing large portions of the render-markdown plugin settings as they are just the defaults
19 lines
362 B
Lua
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>' }
|
|
}
|
|
}
|