Code layout has been changed and improoved. Annotations are added for documentation. Automated through utility functions and data tables BREAKING CHANGE: Tested from clean. Now properly uses LuaRocks to install dependencies.
44 lines
1.4 KiB
Lua
44 lines
1.4 KiB
Lua
--- @module "plugins.languages"
|
|
--- This module defines the languages plugins spec for the Neovim configuration.
|
|
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ Languages │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
return {
|
|
{ -- none-ls
|
|
import = "lazyvim.plugins.extras.lsp.none-ls",
|
|
},
|
|
{ -- JSON
|
|
import = "lazyvim.plugins.extras.lang.json",
|
|
},
|
|
{ -- Markdown
|
|
import = "lazyvim.plugins.extras.lang.markdown",
|
|
},
|
|
{ -- Toml
|
|
import = "lazyvim.plugins.extras.lang.toml",
|
|
},
|
|
{ -- Git
|
|
import = "lazyvim.plugins.extras.lang.git",
|
|
},
|
|
{ -- Python
|
|
import = "lazyvim.plugins.extras.lang.python",
|
|
},
|
|
{ -- Yaml
|
|
import = "lazyvim.plugins.extras.lang.yaml",
|
|
},
|
|
{ -- clangd
|
|
import = "lazyvim.plugins.extras.lang.clangd",
|
|
},
|
|
{ -- cmake
|
|
import = "lazyvim.plugins.extras.lang.cmake",
|
|
},
|
|
{ -- Docker
|
|
import = "lazyvim.plugins.extras.lang.docker",
|
|
},
|
|
{ -- Java
|
|
import = "lazyvim.plugins.extras.lang.java",
|
|
},
|
|
{ -- Sql
|
|
import = "lazyvim.plugins.extras.lang.sql",
|
|
},
|
|
}
|