fix: ensure single quotes are used consistently across configuration files

This commit is contained in:
2024-11-12 14:19:44 -05:00
parent 0d6750bbcd
commit 3f096313fc
51 changed files with 3097 additions and 3057 deletions
+45 -44
View File
@@ -5,105 +5,106 @@
-- ╰─────────────────────────────────────────────────────────╯
return {
-- { import = "lazyvim.plugins.extras.coding.blink" },
{ -- Mason-lspconfig
"williamboman/mason-lspconfig.nvim",
opts = require("data.types").mason_lsp_config.opts,
'williamboman/mason-lspconfig.nvim',
opts = require('data.types').mason_lsp_config.opts,
},
{ -- luasnip
import = "lazyvim.plugins.extras.coding.luasnip",
import = 'lazyvim.plugins.extras.coding.luasnip',
},
{ -- nvim-treesitter
"nvim-treesitter/nvim-treesitter",
opts = require("data.types").treesitter.opts,
'nvim-treesitter/nvim-treesitter',
opts = require('data.types').treesitter.opts,
},
{ -- nvim-lspconfig
"neovim/nvim-lspconfig",
opts = require("data.types").lspconfig.opts,
'neovim/nvim-lspconfig',
opts = require('data.types').lspconfig.opts,
},
{ -- Yanky
import = "lazyvim.plugins.extras.coding.yanky",
import = 'lazyvim.plugins.extras.coding.yanky',
},
{ -- Yanky
"gbprod/yanky.nvim",
requires = { "kkharji/sqlite.lua" },
opts = require("data.types").yanky,
keys = require("data.keys").yanky,
'gbprod/yanky.nvim',
requires = { 'kkharji/sqlite.lua' },
opts = require('data.types').yanky,
keys = require('data.keys').yanky,
},
{ -- Neogen
import = "lazyvim.plugins.extras.coding.neogen",
import = 'lazyvim.plugins.extras.coding.neogen',
},
{
"folke/lazydev.nvim",
'folke/lazydev.nvim',
opts = {
library = {
{ path = "luvit-meta/library", words = { "vim%.uv" } },
{ path = "LazyVim", words = { "LazyVim" } },
{ path = "lazy.nvim", words = { "LazyVim" } },
{ path = 'luvit-meta/library', words = { 'vim%.uv' } },
{ path = 'LazyVim', words = { 'LazyVim' } },
{ path = 'lazy.nvim', words = { 'LazyVim' } },
-- Load the wezterm types when the `wezterm` module is required
-- Needs `justinsgithub/wezterm-types` to be installed
{ path = "wezterm-types", mods = { "wezterm" } },
{ path = 'wezterm-types', mods = { 'wezterm' } },
},
},
},
{ -- G-code
"wilriker/gcode.vim",
'wilriker/gcode.vim',
},
{ -- Alternate
"ton/vim-alternate",
'ton/vim-alternate',
lazy = true,
ft = require("data.types").alternate,
keys = require("data.keys").alternate,
ft = require('data.types').alternate,
keys = require('data.keys').alternate,
},
{ -- Tailwind
"luckasRanarison/tailwind-tools.nvim",
'luckasRanarison/tailwind-tools.nvim',
lazy = true,
dependencies = require("data.deps").needs_treesitter,
dependencies = require('data.deps').needs_treesitter,
opts = {},
},
{ -- Substitute
"gbprod/substitute.nvim",
'gbprod/substitute.nvim',
lazy = true,
opts = require("data.types").substitute,
keys = require("data.keys").substitute,
opts = require('data.types').substitute,
keys = require('data.keys').substitute,
},
{ -- Comment
"numToStr/Comment.nvim",
opts = require("data.types").comment,
'numToStr/Comment.nvim',
opts = require('data.types').comment,
},
{ -- Fast Action
"Chaitanyabsprip/fastaction.nvim",
'Chaitanyabsprip/fastaction.nvim',
opts = {},
},
{ -- Matchup
"andymass/vim-matchup",
'andymass/vim-matchup',
setup = function()
-- may set any options here
vim.g.matchup_matchparen_offscreen = { method = "popup" }
vim.g.matchup_matchparen_offscreen = { method = 'popup' }
end,
},
{ -- EasyAlign
"junegunn/vim-easy-align",
keys = require("data.keys").easyalign,
'junegunn/vim-easy-align',
keys = require('data.keys').easyalign,
},
{ -- Vim-Shebang
"vitalk/vim-shebang",
'vitalk/vim-shebang',
lazy = false,
},
{
"oskarrrrrrr/symbols.nvim",
cmd = { "Symbols", "SymbolsToggle", "SymbolsOpen", "SymbolsClose" },
'oskarrrrrrr/symbols.nvim',
cmd = { 'Symbols', 'SymbolsToggle', 'SymbolsOpen', 'SymbolsClose' },
config = function()
local r = require("symbols.recipes")
require("symbols").setup(r.DefaultFilters, r.AsciiSymbols, {
local r = require('symbols.recipes')
require('symbols').setup(r.DefaultFilters, r.AsciiSymbols, {
sidebar = {
auto_peek = false,
show_guide_lines = true,
chars = {
folded = "",
unfolded = "",
guide_vert = "",
guide_middle_item = "",
guide_last_item = "",
folded = '',
unfolded = '',
guide_vert = '',
guide_middle_item = '',
guide_last_item = '',
},
preview = {
show_always = true,