diff options
author | Squibid <me@zacharyscheiman.com> | 2024-11-19 14:58:09 -0600 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-11-19 14:58:09 -0600 |
commit | c4a86fb727956d0afd1ec59b55f49eb9e2d5dadb (patch) | |
tree | dd6f290564ced67bb8f6aa4af5da7214001c5db1 /lua/conf/plugins/ts-autotag.lua | |
parent | 6bee0d50c7f1b5f12cdb18b29ef347864255f114 (diff) | |
download | nvim-c4a86fb727956d0afd1ec59b55f49eb9e2d5dadb.tar.gz nvim-c4a86fb727956d0afd1ec59b55f49eb9e2d5dadb.tar.bz2 nvim-c4a86fb727956d0afd1ec59b55f49eb9e2d5dadb.zip |
missing one parameter for ts-autotag disabling
Diffstat (limited to 'lua/conf/plugins/ts-autotag.lua')
-rw-r--r-- | lua/conf/plugins/ts-autotag.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conf/plugins/ts-autotag.lua b/lua/conf/plugins/ts-autotag.lua index d27ad57..001dd0a 100644 --- a/lua/conf/plugins/ts-autotag.lua +++ b/lua/conf/plugins/ts-autotag.lua @@ -1,6 +1,6 @@ return { 'windwp/nvim-ts-autotag', requires = 'nvim-telescope/telescope.nvim', - disable = vim.version.lt(vim.version(), { 0, 9, }), + disable = vim.version.lt(vim.version(), { 0, 9, 5 }), function() require('nvim-ts-autotag').setup {} |