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:
parent
e4b7184d75
commit
024936fb8c
6 changed files with 6 additions and 24 deletions
|
|
@ -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" },
|
||||
|
|
|
|||
|
|
@ -38,6 +38,12 @@ return {
|
|||
"ssh_config",
|
||||
"printf",
|
||||
"nginx",
|
||||
"dockerfile",
|
||||
"javascript",
|
||||
"javadoc",
|
||||
"make",
|
||||
"cmake",
|
||||
"ninja"
|
||||
},
|
||||
languages = {
|
||||
dotenv = {
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
local spec = require('user.utils.lang_spec')
|
||||
|
||||
return {
|
||||
spec.treesitter("cmake"),
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
local spec = require('user.utils.lang_spec')
|
||||
|
||||
return {
|
||||
spec.treesitter("dockerfile"),
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
local spec = require('user.utils.lang_spec')
|
||||
|
||||
return {
|
||||
spec.treesitter("javascript", "javadoc"),
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
local spec = require('user.utils.lang_spec')
|
||||
|
||||
return {
|
||||
spec.treesitter("ninja"),
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue