diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-11-06 15:54:24 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-11-06 15:54:24 +0100 |
commit | 99ae247eacf35697c607d880675d910fcce90ae3 (patch) | |
tree | c54bd8b42a56c7ad94ff138c69fd85005b02f4ae /.config/nvim/plugins/treesitter.vim | |
parent | d9f12831186077736fcd9c163a4b31a1fa28690e (diff) |
[nvim] refactor plugins to use lazy.nvim
Diffstat (limited to '.config/nvim/plugins/treesitter.vim')
-rw-r--r-- | .config/nvim/plugins/treesitter.vim | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/.config/nvim/plugins/treesitter.vim b/.config/nvim/plugins/treesitter.vim deleted file mode 100644 index b011e36..0000000 --- a/.config/nvim/plugins/treesitter.vim +++ /dev/null @@ -1,18 +0,0 @@ -lua <<EOF -require('nvim-treesitter.configs').setup { - ensure_installed = 'all', - sync_install = false, - indent = { - enable = true, - }, - highlight = { - enable = true, - additional_vim_regex_highlighting = false, - }, -} -EOF - -highlight! link @text.diff.add DiffAdd -highlight! link @text.diff.delete DiffDelete -highlight! link @text.diff.change DiffChange -highlight! link @text.diff.text DiffText |