✨ feat(gcode): add support for gcode
Add a plugin for gcode. A couple other tweaks to lazy-loading performance.
This commit is contained in:
@@ -17,6 +17,9 @@ return {
|
|||||||
{ -- VSCode
|
{ -- VSCode
|
||||||
import = "lazyvim.plugins.extras.vscode",
|
import = "lazyvim.plugins.extras.vscode",
|
||||||
},
|
},
|
||||||
|
{ -- G-code
|
||||||
|
"wilriker/gcode.vim",
|
||||||
|
},
|
||||||
{ -- Mini Align
|
{ -- Mini Align
|
||||||
"echasnovski/mini.align",
|
"echasnovski/mini.align",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
@@ -38,12 +41,14 @@ return {
|
|||||||
},
|
},
|
||||||
{ -- Highlight colors
|
{ -- Highlight colors
|
||||||
"brenoprata10/nvim-highlight-colors",
|
"brenoprata10/nvim-highlight-colors",
|
||||||
|
event = "BufReadPre",
|
||||||
config = function()
|
config = function()
|
||||||
require("nvim-highlight-colors").setup({})
|
require("nvim-highlight-colors").setup({})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ -- Tailwind
|
{ -- Tailwind
|
||||||
"luckasRanarison/tailwind-tools.nvim",
|
"luckasRanarison/tailwind-tools.nvim",
|
||||||
|
lazy = true,
|
||||||
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
||||||
opts = {}, -- your configuration
|
opts = {}, -- your configuration
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user