mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-02 03:47:54 +00:00
chore(nvim): plugins cleanup, updates
This commit is contained in:
@@ -5,14 +5,21 @@ return {
|
||||
"folke/twilight.nvim",
|
||||
config = {
|
||||
dimming = {
|
||||
alpha = 0.5, -- amount of dimming
|
||||
inactive = false, -- when true, other windows will be fully dimmed (unless they contain the same buffer)
|
||||
-- amount of dimming
|
||||
alpha = 0.2,
|
||||
-- when true, other windows will be fully dimmed (unless they contain the same buffer)
|
||||
inactive = false,
|
||||
},
|
||||
context = 3, -- amount of lines we will try to show around the current line
|
||||
treesitter = true, -- use treesitter when available for the filetype
|
||||
-- amount of lines we will try to show around the current line
|
||||
context = 3,
|
||||
-- use treesitter when available for the filetype
|
||||
-- treesitter is used to automatically expand the visible text,
|
||||
-- but you can further control the types of nodes that should always be fully expanded
|
||||
expand = { -- for treesitter, we we always try to expand to the top-most ancestor with these types
|
||||
|
||||
treesitter = true,
|
||||
|
||||
-- for treesitter, we we always try to expand to the top-most ancestor with these types
|
||||
expand = {
|
||||
"function",
|
||||
"while_statement",
|
||||
"for_statement",
|
||||
|
||||
Reference in New Issue
Block a user