(nvim) add stylua.toml

This commit is contained in:
juancwu 2025-09-04 21:22:19 -04:00
commit 0230fb27fc
3 changed files with 31 additions and 28 deletions

View file

@ -1,17 +1,17 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
local Utils = require("juancwu.utils")
require("juancwu.config").setup({
colorscheme = Utils.colors.get_timebased_colorscheme(),
colorscheme = Utils.colors.get_timebased_colorscheme(),
})