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",
[".*/Azure%-Pipelines/.*%.yml"] = "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 },
HeadlineReversed = { bg = colors.sumiInk1 },
LspInlayHint = { link = "Comment", italic = true },
['@text.title.1.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.2.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.3.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.4.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.5.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.6.marker.markdown'] = { fg = colors.surimiOrange }
["@text.title.1.marker.markdown"] = { fg = colors.surimiOrange },
["@text.title.2.marker.markdown"] = { fg = colors.surimiOrange },
["@text.title.3.marker.markdown"] = { fg = colors.surimiOrange },
["@text.title.4.marker.markdown"] = { fg = colors.surimiOrange },
["@text.title.5.marker.markdown"] = { fg = colors.surimiOrange },
["@text.title.6.marker.markdown"] = { fg = colors.surimiOrange },
}
return overrides

View File

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

View File

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