aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2025-12-22 17:27:27 +0100
committerThomas Schmucker <ts@its1.de>2025-12-22 17:27:27 +0100
commitd662ef8d258234b6602cae1b1d9060f71d29e9c1 (patch)
tree8f58882dcf21790c0091c35f1b9f03b5e87fec7f
parent2a91ddacce9c1eab40b56d89e46b177d133a47cc (diff)
downloaddotfiles-d662ef8d258234b6602cae1b1d9060f71d29e9c1.tar.gz
dotfiles-d662ef8d258234b6602cae1b1d9060f71d29e9c1.tar.bz2
dotfiles-d662ef8d258234b6602cae1b1d9060f71d29e9c1.zip
Deaktiviere treesitter ... :/
-rw-r--r--nvim/plugins.vim26
1 files changed, 14 insertions, 12 deletions
diff --git a/nvim/plugins.vim b/nvim/plugins.vim
index fe7b8f6..4277d35 100644
--- a/nvim/plugins.vim
+++ b/nvim/plugins.vim
@@ -57,18 +57,20 @@ require("nvim-tree").setup({
57 }, 57 },
58}) 58})
59 59
60require('nvim-treesitter.configs').setup { 60-- require('nvim-treesitter.configs').setup {
61 ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "typescript", "python", "html", "go", "gomod", "gosum" }, 61-- ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "typescript", "python", "html", "go", "gomod", "gosum" },
62 sync_install = false, 62-- sync_install = false,
63 auto_install = false, 63-- auto_install = false,
64 highlight = { 64-- highlight = {
65 enable = true, 65-- enable = true,
66 additional_vim_regex_highlighting = true, 66-- additional_vim_regex_highlighting = true,
67 }, 67-- },
68 indent = { 68-- indent = {
69 enable = true, 69-- enable = true,
70 } 70-- }
71} 71-- }
72
73require'nvim-treesitter'.install { "c", "cpp", "lua", "vim", "vimdoc", "typescript", "python", "html", "go", "gomod", "gosum" }
72 74
73require('nvim-autopairs').setup() 75require('nvim-autopairs').setup()
74 76