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.
54 lines
1.5 KiB
Lua
54 lines
1.5 KiB
Lua
--- @module "plugins.coding"
|
|
--- This module defines the coding plugins spec for the Neovim configuration.
|
|
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ Coding │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
local data = require("data")
|
|
|
|
return {
|
|
{ -- Mason-lspconfig
|
|
"williamboman/mason-lspconfig.nvim",
|
|
opts = {
|
|
automatic_installation = true,
|
|
},
|
|
},
|
|
{ --
|
|
"neovim/nvim-lspconfig",
|
|
opts = data.types.lspconfig.opts,
|
|
},
|
|
{ -- Yanky
|
|
import = "lazyvim.plugins.extras.coding.yanky",
|
|
},
|
|
{ -- VSCode
|
|
import = "lazyvim.plugins.extras.vscode",
|
|
},
|
|
{ -- Neogen
|
|
import = "lazyvim.plugins.extras.coding.neogen",
|
|
},
|
|
{ -- G-code
|
|
"wilriker/gcode.vim",
|
|
},
|
|
{ -- Alternate
|
|
"ton/vim-alternate",
|
|
lazy = true,
|
|
ft = data.types.alternate,
|
|
keys = data.keys.alternate,
|
|
},
|
|
{ -- Tailwind
|
|
"luckasRanarison/tailwind-tools.nvim",
|
|
lazy = true,
|
|
dependencies = data.deps.needs_treesitter,
|
|
opts = {},
|
|
},
|
|
{ -- Substitute
|
|
"gbprod/substitute.nvim",
|
|
lazy = true,
|
|
opts = data.types.substitute,
|
|
keys = data.keys.substitute,
|
|
},
|
|
{
|
|
"iamcco/markdown-preview.nvim",
|
|
build = "cd app && yarn install",
|
|
},
|
|
}
|