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
+48 -48
View File
@@ -6,117 +6,117 @@
return {
{ -- Tokyonight
"folke/tokyonight.nvim",
'folke/tokyonight.nvim',
lazy = true, -- Override
name = "tokyonight",
name = 'tokyonight',
opts = {
style = "night",
style = 'night',
},
},
{ -- Catppuccin
"catppuccin/nvim",
'catppuccin/nvim',
lazy = false, -- Override
priority = 1000,
name = "catppuccin",
opts = require("data.types").catppuccin,
name = 'catppuccin',
opts = require('data.types').catppuccin,
},
{ -- Ayu
"Shatur/neovim-ayu",
'Shatur/neovim-ayu',
lazy = true,
name = "ayu",
name = 'ayu',
},
{ -- Dracula
"Mofiqul/dracula.nvim",
'Mofiqul/dracula.nvim',
lazy = true,
name = "dracula",
name = 'dracula',
},
{ -- Eldritch
"eldritch-theme/eldritch.nvim",
'eldritch-theme/eldritch.nvim',
lazy = true,
name = "eldritch",
name = 'eldritch',
},
{ -- Flow
"0xstepit/flow.nvim",
'0xstepit/flow.nvim',
lazy = true,
name = "flow",
name = 'flow',
},
{ -- Github-theme
"projekt0n/github-nvim-theme",
'projekt0n/github-nvim-theme',
lazy = true,
name = "github-nvim-theme",
name = 'github-nvim-theme',
},
{ -- Gruvbox
"ellisonleao/gruvbox.nvim",
'ellisonleao/gruvbox.nvim',
lazy = true,
name = "gruvbox",
name = 'gruvbox',
},
{ -- Kanagawa
"rebelot/kanagawa.nvim",
'rebelot/kanagawa.nvim',
lazy = true,
name = "kanagawa",
name = 'kanagawa',
},
{ -- Monochrome
"kdheepak/monochrome.nvim",
'kdheepak/monochrome.nvim',
lazy = true,
name = "monochrome",
name = 'monochrome',
},
{ -- NeoFusion
"diegoulloao/neofusion.nvim",
'diegoulloao/neofusion.nvim',
lazy = true,
name = "neofusion",
name = 'neofusion',
},
{ -- Nord
"shaunsingh/nord.nvim",
'shaunsingh/nord.nvim',
lazy = true,
name = "nord",
name = 'nord',
},
{ -- One Dark Pro
"olimorris/onedarkpro.nvim",
'olimorris/onedarkpro.nvim',
lazy = true,
name = "onedarkpro",
name = 'onedarkpro',
},
{ -- Oxocarbon
"nyoom-engineering/oxocarbon.nvim",
'nyoom-engineering/oxocarbon.nvim',
lazy = true,
name = "oxocarbon",
name = 'oxocarbon',
},
{ -- Paper
"https://gitlab.com/yorickpeterse/vim-paper.git",
'https://gitlab.com/yorickpeterse/vim-paper.git',
lazy = true,
name = "vim-paper",
name = 'vim-paper',
},
{ -- Rose-Pine
"rose-pine/neovim",
name = "rose-pine",
'rose-pine/neovim',
name = 'rose-pine',
lazy = true,
},
{ -- Umbra
"LZDQ/umbra.nvim",
'LZDQ/umbra.nvim',
lazy = true,
name = "umbra",
name = 'umbra',
},
{ -- Zenbones
"zenbones-theme/zenbones.nvim",
name = "zenbones",
'zenbones-theme/zenbones.nvim',
name = 'zenbones',
lazy = true,
dependencies = require("data.deps").zenbones,
dependencies = require('data.deps').zenbones,
},
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ UTILITIES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
{ -- Transparent
"xiyaowong/transparent.nvim",
'xiyaowong/transparent.nvim',
lazy = true,
keys = require("data.keys").transparent,
cmd = require("data.cmd").transparent,
keys = require('data.keys').transparent,
cmd = require('data.cmd').transparent,
},
{ -- Auto Dark Mode
"f-person/auto-dark-mode.nvim",
'f-person/auto-dark-mode.nvim',
lazy = true,
opts = require("data.types").auto_dark_mode,
cond = require("data.cond").auto_dark_mode,
opts = require('data.types').auto_dark_mode,
cond = require('data.cond').auto_dark_mode,
},
{ -- Highlight colors
"brenoprata10/nvim-highlight-colors",
event = "BufReadPre",
opts = require("data.types").hightlight_colors,
'brenoprata10/nvim-highlight-colors',
event = 'BufReadPre',
opts = require('data.types').hightlight_colors,
},
}