style(nvim): format with stylua

This commit is contained in:
Price Hiller 2023-08-19 05:19:17 -05:00
parent 7443481fce
commit 8b6014a04b
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
7 changed files with 11 additions and 12 deletions

View File

@ -4,5 +4,5 @@ vim.opt_local.expandtab = true
vim.keymap.set("n", "<leader>fr", ":luafile %<CR>", { vim.keymap.set("n", "<leader>fr", ":luafile %<CR>", {
buffer = true, buffer = true,
silent = true silent = true,
}) })

View File

@ -10,7 +10,7 @@ M.setup = function()
[".*/Azure%-Pipelines/.*%.yml"] = "azure-pipelines", [".*/Azure%-Pipelines/.*%.yml"] = "azure-pipelines",
[".*/Azure%-Pipelines/.*%.yaml"] = "azure-pipelines", [".*/Azure%-Pipelines/.*%.yaml"] = "azure-pipelines",
[".*/waybar/config"] = "jsonc", [".*/waybar/config"] = "jsonc",
[".*/etc/systemd/.*"] = "systemd" [".*/etc/systemd/.*"] = "systemd",
}, },
}) })

View File

@ -8,15 +8,15 @@ return {
"tex", "tex",
"plaintex", "plaintex",
"norg", "norg",
"yaml" "yaml",
}, },
config = function() config = function()
require("autolist").setup({ require("autolist").setup({
lists = { lists = {
yaml = { yaml = {
"[-]" "[-]",
} },
} },
}) })
local autolist_group = vim.api.nvim_create_augroup("Autolist", {}) local autolist_group = vim.api.nvim_create_augroup("Autolist", {})
vim.api.nvim_create_autocmd("filetype", { vim.api.nvim_create_autocmd("filetype", {

View File

@ -25,9 +25,9 @@ return {
mappings = { mappings = {
status = { status = {
["l"] = false, ["l"] = false,
["L"] = "LogPopup" ["L"] = "LogPopup",
} },
} },
} }
end, end,
dependencies = { dependencies = {

View File

@ -7,6 +7,6 @@ return {
"HighlightColorsOff", "HighlightColorsOff",
"HighlightColorsToggle", "HighlightColorsToggle",
}, },
config = true config = true,
}, },
} }

View File

@ -325,7 +325,6 @@ return {
library.enabled = true library.enabled = true
library.plugins = true library.plugins = true
end end
end, end,
}) })

View File

@ -162,7 +162,7 @@ return {
{ {
color = { color = {
fg = "#C34043", fg = "#C34043",
gui = "bold,italic" gui = "bold,italic",
}, },
function() function()
local user = os.getenv("USER") local user = os.getenv("USER")