Files
dotfiles/nvim/lua/plugins/twilight.lua
FaultyBranches 7b64bb09ac fix: Several small updates.
- Removing the load_lauunchjs call for dap as it's no longer needed.
- Cleanup of lspconfig of several lines that appear to not do anything
  in testing, and updating keymap order.
- Removing the luasnip setup section as it appears to not be required in
  testing.
- Update to nvim-cmp for luasnip relative loading and removing the
  buffer from command mode completion
- Twilight update to narrow the focus but also expand out if statements.
- ZSH re-enabling keychain despite it being slow as replacement with
  gpg-agent will take a focused session to do across environments
2026-04-02 06:29:20 -05:00

22 lines
450 B
Lua

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