We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 012578b commit a9f3fd2Copy full SHA for a9f3fd2
2 files changed
lua/config/vim-illuminate.lua
@@ -0,0 +1,16 @@
1
+require("illuminate").configure {
2
+ filetypes_denylist = {},
3
+ filetypes_allowlist = {
4
+ "go",
5
+ "java",
6
+ "javascript",
7
+ "json",
8
+ "lua",
9
+ "python",
10
+ "sh",
11
+ "toml",
12
+ "typescript",
13
+ "yaml",
14
+ },
15
+ min_count_to_highlight = 2,
16
+}
lua/plugin_specs.lua
@@ -787,18 +787,7 @@ local plugin_specs = {
787
"RRethy/vim-illuminate",
788
event = "VeryLazy",
789
config = function()
790
- require("illuminate").configure {
791
- filetypes_denylist = {},
792
- filetypes_allowlist = {
793
- "lua",
794
- "python",
795
- "sh",
796
- "yaml",
797
- "json",
798
- "toml",
799
- },
800
- min_count_to_highlight = 2,
801
- }
+ require("config.vim-illuminate")
802
end,
803
},
804
{
0 commit comments