aboutsummaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim')
-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