style(nvim): format with stylua

This commit is contained in:
Price Hiller 2023-06-25 14:07:48 -05:00
parent 64c6923f58
commit e61a745eab
No known key found for this signature in database
4 changed files with 17 additions and 17 deletions

View File

@ -9,7 +9,7 @@ M.setup = function()
[".*%.dockerfile"] = "dockerfile", [".*%.dockerfile"] = "dockerfile",
[".*/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",
}, },
}) })

View File

@ -132,12 +132,12 @@ require("kanagawa").setup({
Headline = { bg = colors.sumiInk2 }, Headline = { bg = colors.sumiInk2 },
HeadlineReversed = { bg = colors.sumiInk1 }, HeadlineReversed = { bg = colors.sumiInk1 },
LspInlayHint = { link = "Comment", italic = true }, LspInlayHint = { link = "Comment", italic = true },
['@text.title.1.marker.markdown'] = { fg = colors.surimiOrange }, ["@text.title.1.marker.markdown"] = { fg = colors.surimiOrange },
['@text.title.2.marker.markdown'] = { fg = colors.surimiOrange }, ["@text.title.2.marker.markdown"] = { fg = colors.surimiOrange },
['@text.title.3.marker.markdown'] = { fg = colors.surimiOrange }, ["@text.title.3.marker.markdown"] = { fg = colors.surimiOrange },
['@text.title.4.marker.markdown'] = { fg = colors.surimiOrange }, ["@text.title.4.marker.markdown"] = { fg = colors.surimiOrange },
['@text.title.5.marker.markdown'] = { fg = colors.surimiOrange }, ["@text.title.5.marker.markdown"] = { fg = colors.surimiOrange },
['@text.title.6.marker.markdown'] = { fg = colors.surimiOrange } ["@text.title.6.marker.markdown"] = { fg = colors.surimiOrange },
} }
return overrides return overrides

View File

@ -6,7 +6,7 @@ telescope.setup({
find_files = { find_files = {
find_command = { find_command = {
"fd", "fd",
"--no-ignore" "--no-ignore",
}, },
hidden = true, hidden = true,
}, },

View File

@ -122,7 +122,7 @@ lazy.setup({
"nvim-telescope/telescope-ui-select.nvim", "nvim-telescope/telescope-ui-select.nvim",
"debugloop/telescope-undo.nvim", "debugloop/telescope-undo.nvim",
{ "nvim-telescope/telescope-smart-history.nvim", dependencies = "tami5/sqlite.lua" }, { "nvim-telescope/telescope-smart-history.nvim", dependencies = "tami5/sqlite.lua" },
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, { "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
}, },
config = function() config = function()
require("plugins.configs.telescope-nvim") require("plugins.configs.telescope-nvim")
@ -328,8 +328,8 @@ lazy.setup({
setopt = true, setopt = true,
relculright = false, relculright = false,
segments = { segments = {
{ text = { "%s" }, click = "v:lua.ScSa" }, { text = { "%s" }, click = "v:lua.ScSa" },
{ text = { builtin.lnumfunc }, click = "v:lua.ScLa" }, { text = { builtin.lnumfunc }, click = "v:lua.ScLa" },
{ text = { " ", builtin.foldfunc, " " }, click = "v:lua.ScFa" }, { text = { " ", builtin.foldfunc, " " }, click = "v:lua.ScFa" },
}, },
}) })
@ -455,7 +455,7 @@ lazy.setup({
"echasnovski/mini.nvim", "echasnovski/mini.nvim",
event = "VeryLazy", event = "VeryLazy",
config = function() config = function()
require('mini.align').setup({}) require("mini.align").setup({})
require("mini.cursorword").setup({}) require("mini.cursorword").setup({})
end, end,
}, },
@ -694,13 +694,13 @@ lazy.setup({
enable = true, enable = true,
head = { cursor = "", texthl = "SmoothCursorCursor", linehl = nil }, head = { cursor = "", texthl = "SmoothCursorCursor", linehl = nil },
body = { body = {
{ cursor = "", texthl = "SmoothCursorTrailBig1" }, { cursor = "", texthl = "SmoothCursorTrailBig1" },
{ cursor = "", texthl = "SmoothCursorTrailBig2" }, { cursor = "", texthl = "SmoothCursorTrailBig2" },
{ cursor = "󰝥", texthl = "SmoothCursorTrailMedium" }, { cursor = "󰝥", texthl = "SmoothCursorTrailMedium" },
{ cursor = "󰝥", texthl = "SmoothCursorTrailMedium" }, { cursor = "󰝥", texthl = "SmoothCursorTrailMedium" },
{ cursor = "", texthl = "SmoothCursorTrailSmall" }, { cursor = "", texthl = "SmoothCursorTrailSmall" },
{ cursor = ".", texthl = "SmoothCursorTrailXSmall" }, { cursor = ".", texthl = "SmoothCursorTrailXSmall" },
{ cursor = ".", texthl = "SmoothCursorTrailXSmall" }, { cursor = ".", texthl = "SmoothCursorTrailXSmall" },
}, },
}, },
disabled_filetypes = { "NeogitNotification" }, disabled_filetypes = { "NeogitNotification" },