This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/plugin/treesitter.lua
David JULIEN 67c6462ab0
Merge branch 'dev' into gentoo
nvim:
        format config files
        add commenting plugin
2021-10-12 19:10:53 +02:00

16 lines
440 B
Lua

-- Author : swytch
-- Created : Monday May 24, 2021 20:02:19 CET
-- License : GPLv3
-- Description : treesitter config file
require("nvim-treesitter.configs").setup {
ensure_installed = { "c", "lua", "python", "bash", "latex", "verilog" },
ignore_install = { "javascript" },
highlight = {
enable = true,
},
indent = {
enable = true,
},
}