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
+14 -14
View File
@@ -3,16 +3,16 @@
local data = {}
-- Explicitly specify for LSP support
data.keys = require("data.keys")
data.types = require("data.types")
data.func = require("data.func")
data.cmd = require("data.cmd")
data.deps = require("data.deps")
data.dash = require("data.dash")
data.ft = require("data.ft")
data.events = require("data.events")
data.autocmd = require("data.autocmd")
data.cond = require("data.cond")
data.keys = require('data.keys')
data.types = require('data.types')
data.func = require('data.func')
data.cmd = require('data.cmd')
data.deps = require('data.deps')
data.dash = require('data.dash')
data.ft = require('data.ft')
data.events = require('data.events')
data.autocmd = require('data.autocmd')
data.cond = require('data.cond')
-- Generic function to iterate over files in a specified directory and load Lua modules
function data.load_modules_from_dir(directory, module_prefix)
@@ -21,11 +21,11 @@ function data.load_modules_from_dir(directory, module_prefix)
for _, file in ipairs(files) do
-- Skip init.lua
if file ~= "init.lua" and file:match(".*%.lua$") then
if file ~= 'init.lua' and file:match('.*%.lua$') then
-- Get the module name without the .lua extension
local module_name = file:sub(1, -5)
-- Construct the module path
local module_path = module_prefix .. "." .. module_name
local module_path = module_prefix .. '.' .. module_name
-- Load the module if not already explicitly set
if not _G[module_name] then
_G[module_name] = require(module_path)
@@ -37,9 +37,9 @@ end
-- Example usage
local function read_data_dir()
-- Getting the root path for the current module directory
local dir_path = vim.fn.fnamemodify(debug.getinfo(1, "S").source:sub(2), ":h")
local dir_path = vim.fn.fnamemodify(debug.getinfo(1, 'S').source:sub(2), ':h')
-- Load modules from the data directory
data.load_modules_from_dir(dir_path, "data")
data.load_modules_from_dir(dir_path, 'data')
end
-- Read the directory and load any additional modules