You've already forked dotfiles
21 lines
396 B
Lua
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>')
|