[format] lua via stylua

This commit is contained in:
Daveanand Mannie
2026-01-12 11:38:14 -05:00
parent 6720c8c765
commit 2f9cbf29fa
15 changed files with 187 additions and 192 deletions

View File

@@ -20,7 +20,7 @@ config.window_padding = {
bottom = "0cell",
}
-- pane
config.colors = { split = '#E858F5' }
config.colors = { split = "#E858F5" }
config.inactive_pane_hsb = {
saturation = 0.7,
brightness = 0.8,

View File

@@ -27,8 +27,6 @@ local layouts = {
},
},
vs_search = {
preview = false,
layout = {

View File

@@ -2,7 +2,7 @@ return {
"saghen/blink.cmp",
opts = {
keymap = {
["<Tab>"] = { "select_and_accept", 'fallback' },
["<Tab>"] = { "select_and_accept", "fallback" },
},
},
}

View File

@@ -13,7 +13,7 @@ return {
javascript = { "biome" },
sql = { "pg_format" },
yaml = { "hydra_lsp" },
lua = {"stylua"}
lua = { "stylua" },
},
},
dependencies = {

View File

@@ -15,10 +15,7 @@ return {
dapui.setup(opts)
-- icons
vim.fn.sign_define(
"DapBreakpoint",
{ text = "🔴", texthl = "DiagnosticError", linehl = "", numhl = "" }
)
vim.fn.sign_define("DapBreakpoint", { text = "🔴", texthl = "DiagnosticError", linehl = "", numhl = "" })
-- Auto open/close UI
dap.listeners.after.event_initialized["dapui_config"] = function()

View File

@@ -20,7 +20,7 @@ return {
"shfmt",
-- go
"goimports",
"gofumpt"
"gofumpt",
},
},
}

View File

@@ -8,7 +8,7 @@ return {
win = {
no_overlap = false,
},
preset = 'modern'
preset = "modern",
},
},
}