Initial new commit
This commit is contained in:
commit
c46ad3d427
22 changed files with 2401 additions and 0 deletions
55
lua/plugins/treesitter.lua
Executable file
55
lua/plugins/treesitter.lua
Executable file
|
@ -0,0 +1,55 @@
|
|||
vim.filetype.add({extension = {wgsl = "wgsl"}})
|
||||
|
||||
require"nvim-treesitter.configs".setup {
|
||||
ensure_installed = { "wgsl", "bash", "cmake", "cpp", "dockerfile", "gitignore", "glsl", "go", "graphql", "html", "java", "javascript", "json5", "kotlin", "markdown", "python", "rasi", "regex", "c", "lua", "rust", "scss", "sql", "sxhkdrc", "toml", "typescript", "yaml" },
|
||||
sync_install = false,
|
||||
auto_install = true,
|
||||
indent = { enable = true, disable = { 'python' } },
|
||||
highlight = {
|
||||
enable = true,
|
||||
},
|
||||
incremental_selection = {
|
||||
enable = true,
|
||||
keymaps = {
|
||||
init_selection = "gnn",
|
||||
node_incremental = "grn",
|
||||
scope_incremental = "grc",
|
||||
node_decremental = "grm",
|
||||
},
|
||||
},
|
||||
-- rainbow = {
|
||||
-- enable = true,
|
||||
-- -- list of languages you want to disable the plugin for
|
||||
-- disable = {},
|
||||
-- -- Which query to use for finding delimiters
|
||||
-- query = 'rainbow-parens',
|
||||
-- -- Highlight the entire buffer all at once
|
||||
-- strategy = require('ts-rainbow').strategy.global,
|
||||
-- },
|
||||
}
|
||||
|
||||
local treesitter_parser_config = require "nvim-treesitter.parsers".get_parser_configs()
|
||||
treesitter_parser_config.templ = {
|
||||
install_info = {
|
||||
url = "https://github.com/vrischmann/tree-sitter-templ.git",
|
||||
files = {"src/parser.c", "src/scanner.c"},
|
||||
branch = "master",
|
||||
},
|
||||
}
|
||||
|
||||
treesitter_parser_config.just = {
|
||||
install_info = {
|
||||
url = "https://github.com/IndianBoy42/tree-sitter-just", -- local path or git repo
|
||||
files = { "src/parser.c", "src/scanner.cc" },
|
||||
branch = "main",
|
||||
-- use_makefile = true -- this may be necessary on MacOS (try if you see compiler errors)
|
||||
},
|
||||
maintainers = { "@IndianBoy42" },
|
||||
}
|
||||
|
||||
vim.treesitter.language.register('templ', 'templ')
|
||||
|
||||
vim.wo.foldmethod = "manual"
|
||||
vim.wo.foldexpr = "nvim_treesitter#foldexpr()"
|
||||
vim.o.foldlevelstart = 99 -- do not close folds when a buffer is opened
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue