Files
dotfiles/nvim/lua/plugins/twilight.lua
2026-05-26 05:28:54 -05:00

21 lines
396 B
Lua

-- Focus plugin that 'dims' lines around the current block/line
vim.pack.add({
'https://github.com/folke/twilight.nvim'
})
require('twilight').setup({
dimming = {
alpha = 0.3,
},
context = 6,
treesitter = true,
expand = {
"function",
"method",
"table",
"if_statement",
}
})
vim.keymap.set('n', '<leader>foc', ':Twilight<CR>')