diff options
Diffstat (limited to '.config/nvim/lua/plugins/nvim-treesitter.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/nvim-treesitter.lua | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/.config/nvim/lua/plugins/nvim-treesitter.lua b/.config/nvim/lua/plugins/nvim-treesitter.lua deleted file mode 100644 index d6b09b6..0000000 --- a/.config/nvim/lua/plugins/nvim-treesitter.lua +++ /dev/null @@ -1,52 +0,0 @@ -local config = function() - require("nvim-treesitter.configs").setup({ - build = ":TSUpdate", - indent = { - enable = true, - }, - autotag = { - enable = true, - }, - event = { - "BufReadPre", - "BufNewFile", - }, - ensure_installed = { - "markdown", - "json", - "javascript", - "typescript", - "yaml", - "html", - "css", - "markdown", - "bash", - "lua", - "dockerfile", - "solidity", - "gitignore", - "python", - "vue", - }, - auto_install = true, - highlight = { - enable = true, - additional_vim_regex_highlighting = true, - }, - incremental_selection = { - enable = true, - keymaps = { - init_selection = "<C-s>", - node_incremental = "<C-s>", - scope_incremental = false, - node_decremental = "<BS>", - }, - }, - }) -end - -return { - "nvim-treesitter/nvim-treesitter", - lazy = false, - config = config, -} |
