diff options
author | opalmay <[email protected]> | 2023-01-07 17:03:03 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-07 17:03:03 +0200 |
commit | 5ae42b0c44c4237912dcea18457582b52d53804e (patch) | |
tree | 9dcc55b80e9293d36ccef3a3f3a0743e7dbcaeb2 /lua/lvim/core/illuminate.lua | |
parent | 719adbc4bb3a494073d1063bf2768bb2834e3916 (diff) |
feat: update setup tables (#3693)
* feat(nvim-tree): update setup table
* chore: lint
* fix: move option to correct place
* feat(illuminate): update setup table
* feat(which-key): update setup table
* feat(project.nvim): update setup table
* feat(gitsigns): update setup table
* chore: lint
* feat(lir): update setup table
Diffstat (limited to 'lua/lvim/core/illuminate.lua')
-rw-r--r-- | lua/lvim/core/illuminate.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/lvim/core/illuminate.lua b/lua/lvim/core/illuminate.lua index a3ca6711..808ce724 100644 --- a/lua/lvim/core/illuminate.lua +++ b/lua/lvim/core/illuminate.lua @@ -13,6 +13,10 @@ M.config = function() }, -- delay: delay in milliseconds delay = 120, + -- filetype_overrides: filetype specific overrides. + -- The keys are strings to represent the filetype while the values are tables that + -- supports the same keys passed to .configure except for filetypes_denylist and filetypes_allowlist + filetype_overrides = {}, -- filetypes_denylist: filetypes to not illuminate, this overrides filetypes_allowlist filetypes_denylist = { "dirvish", |