diff options
Diffstat (limited to 'lua/ache/plugins/scope.lua')
| -rw-r--r-- | lua/ache/plugins/scope.lua | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lua/ache/plugins/scope.lua b/lua/ache/plugins/scope.lua index 88b0458..4fa3043 100644 --- a/lua/ache/plugins/scope.lua +++ b/lua/ache/plugins/scope.lua @@ -1,7 +1,11 @@ +---[ +--- Should do something about tabs but I'm not sure. +---] return { - "tiagovla/scope.nvim", - -- FIXME: Use an other plugin. Doesn't do what I want. - config = function() - require("scope").setup({}) - end + "tiagovla/scope.nvim", + -- FIXME: Use an other plugin. Doesn't do what I want. + config = function() + require("scope").setup({}) + end, + enable = false, } |