diff options
author | LostNeophyte <[email protected]> | 2022-11-01 10:37:50 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-01 10:37:50 +0100 |
commit | 978ff7c24de968d5f2f956b72a196773ae80b903 (patch) | |
tree | f354951f609d37d6952c906c1439a7aa5175927f /lua/lvim/core/nvimtree.lua | |
parent | eabf6c6990cb7ac9416b1733cf59c36c85f50777 (diff) |
perf(treesitter): disable in big files (#3268)
* perf(treesitter): disable in big files
* fix: disable `use_treesitter` in indentlines and remove vim.schedule
* refactor(treesitter): use `vim.schedule`
* perf: set nocursorline in big json files
* perf: disable more things in big files
* chore: format
Diffstat (limited to 'lua/lvim/core/nvimtree.lua')
-rw-r--r-- | lua/lvim/core/nvimtree.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lua/lvim/core/nvimtree.lua b/lua/lvim/core/nvimtree.lua index d98816f5..3738de80 100644 --- a/lua/lvim/core/nvimtree.lua +++ b/lua/lvim/core/nvimtree.lua @@ -147,7 +147,6 @@ function M.setup() return end - if lvim.builtin.nvimtree._setup_called then Log:debug "ignoring repeated setup call for nvim-tree, see kyazdani42/nvim-tree.lua#1308" return |