1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-08-15 16:38:13 +02:00

nvim: remove lang files that only have treesitter parsers in them, define in main treesitter conf instead.

This commit is contained in:
Henrik Hautakoski 2026-07-03 17:29:39 +02:00
parent e4b7184d75
commit 024936fb8c
6 changed files with 6 additions and 24 deletions

View file

@ -26,16 +26,12 @@ require("lazy").setup({
{ import = "user.plugins.lang.lua" },
{ import = "user.plugins.lang.bash" },
{ import = "user.plugins.lang.c" },
{ import = "user.plugins.lang.cmake" },
{ import = "user.plugins.lang.ninja" },
{ import = "user.plugins.lang.docker" },
{ import = "user.plugins.lang.go" },
{ import = "user.plugins.lang.rust" },
{ import = "user.plugins.lang.php" },
{ import = "user.plugins.lang.html" },
{ import = "user.plugins.lang.css" },
{ import = "user.plugins.lang.sql" },
{ import = "user.plugins.lang.javascript" },
{ import = "user.plugins.lang.typescript" },
{ import = "user.plugins.lang.vue" },
{ import = "user.plugins.lang.markdown" },

View file

@ -38,6 +38,12 @@ return {
"ssh_config",
"printf",
"nginx",
"dockerfile",
"javascript",
"javadoc",
"make",
"cmake",
"ninja"
},
languages = {
dotenv = {

View file

@ -1,5 +0,0 @@
local spec = require('user.utils.lang_spec')
return {
spec.treesitter("cmake"),
}

View file

@ -1,5 +0,0 @@
local spec = require('user.utils.lang_spec')
return {
spec.treesitter("dockerfile"),
}

View file

@ -1,5 +0,0 @@
local spec = require('user.utils.lang_spec')
return {
spec.treesitter("javascript", "javadoc"),
}

View file

@ -1,5 +0,0 @@
local spec = require('user.utils.lang_spec')
return {
spec.treesitter("ninja"),
}