feat: add loading options for WezTerm types support

This commit is contained in:
2024-10-11 06:54:36 -04:00
parent 8b41d2436f
commit a8849c6a95
3 changed files with 27 additions and 34 deletions
+14 -30
View File
@@ -8,9 +8,7 @@ local data = require("data")
return {
{ -- Mason-lspconfig
"williamboman/mason-lspconfig.nvim",
opts = {
automatic_installation = true,
},
opts = data.types.mason_lsp_config.opts,
},
{ -- luasnip
import = "lazyvim.plugins.extras.coding.luasnip",
@@ -28,23 +26,7 @@ return {
},
{ -- Yanky
"gbprod/yanky.nvim",
opts = {
system_clipboard = {
sync_with_ring = true,
clipboard_register = '"',
},
highlight = {
on_put = true,
on_yank = true,
timer = 500,
},
preserve_cursor_position = {
enabled = true,
},
textobj = {
enabled = true,
},
},
opts = data.types.yanky,
},
{ -- VSCode
import = "lazyvim.plugins.extras.vscode",
@@ -52,6 +34,16 @@ return {
{ -- Neogen
import = "lazyvim.plugins.extras.coding.neogen",
},
{
"folke/lazydev.nvim",
opts = {
library = {
-- Load the wezterm types when the `wezterm` module is required
-- Needs `justinsgithub/wezterm-types` to be installed
{ path = "wezterm-types", mods = { "wezterm" } },
},
},
},
{ -- G-code
"wilriker/gcode.vim",
},
@@ -73,19 +65,11 @@ return {
opts = data.types.substitute,
keys = data.keys.substitute,
},
{ -- Markdown Preview
"iamcco/markdown-preview.nvim",
build = "cd app && yarn install",
},
{ -- Comment
"numToStr/Comment.nvim",
opts = {
opleader = {
line = "gC",
},
},
opts = data.types.comment,
},
{
{ -- Fast Action
"Chaitanyabsprip/fastaction.nvim",
opts = {},
},
+6 -4
View File
@@ -62,10 +62,11 @@ return {
event = "BufReadPre",
opts = {},
},
-- { -- DeadColumn
-- "Bekaboo/deadcolumn.nvim",
-- event = "BufEnter",
-- },
{ -- DeadColumn
"Bekaboo/deadcolumn.nvim",
event = "BufEnter",
cond = data.func.check_global_var("dead_column", true, true),
},
{ -- Precognition
"tris203/precognition.nvim",
lazy = true,
@@ -87,6 +88,7 @@ return {
{ -- Smart Scrolloff
"tonymajestro/smart-scrolloff.nvim",
event = "VeryLazy",
cond = data.func.check_global_var("smart_scrolloff", true, true),
opts = data.types.smartscrolloff,
},
{ -- Recorder
+7
View File
@@ -69,4 +69,11 @@ return {
}
end,
},
{ -- Markdown Preview
"iamcco/markdown-preview.nvim",
build = "cd app && yarn install",
},
{ -- WezTerm Types
"justinsgithub/wezterm-types",
},
}