[format] lua via stylua
This commit is contained in:
@@ -20,7 +20,7 @@ config.window_padding = {
|
|||||||
bottom = "0cell",
|
bottom = "0cell",
|
||||||
}
|
}
|
||||||
-- pane
|
-- pane
|
||||||
config.colors = { split = '#E858F5' }
|
config.colors = { split = "#E858F5" }
|
||||||
config.inactive_pane_hsb = {
|
config.inactive_pane_hsb = {
|
||||||
saturation = 0.7,
|
saturation = 0.7,
|
||||||
brightness = 0.8,
|
brightness = 0.8,
|
||||||
|
|||||||
@@ -27,8 +27,6 @@ local layouts = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
vs_search = {
|
vs_search = {
|
||||||
preview = false,
|
preview = false,
|
||||||
layout = {
|
layout = {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ return {
|
|||||||
"saghen/blink.cmp",
|
"saghen/blink.cmp",
|
||||||
opts = {
|
opts = {
|
||||||
keymap = {
|
keymap = {
|
||||||
["<Tab>"] = { "select_and_accept", 'fallback' },
|
["<Tab>"] = { "select_and_accept", "fallback" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ return {
|
|||||||
javascript = { "biome" },
|
javascript = { "biome" },
|
||||||
sql = { "pg_format" },
|
sql = { "pg_format" },
|
||||||
yaml = { "hydra_lsp" },
|
yaml = { "hydra_lsp" },
|
||||||
lua = {"stylua"}
|
lua = { "stylua" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
|||||||
@@ -15,10 +15,7 @@ return {
|
|||||||
dapui.setup(opts)
|
dapui.setup(opts)
|
||||||
-- icons
|
-- icons
|
||||||
|
|
||||||
vim.fn.sign_define(
|
vim.fn.sign_define("DapBreakpoint", { text = "🔴", texthl = "DiagnosticError", linehl = "", numhl = "" })
|
||||||
"DapBreakpoint",
|
|
||||||
{ text = "🔴", texthl = "DiagnosticError", linehl = "", numhl = "" }
|
|
||||||
)
|
|
||||||
|
|
||||||
-- Auto open/close UI
|
-- Auto open/close UI
|
||||||
dap.listeners.after.event_initialized["dapui_config"] = function()
|
dap.listeners.after.event_initialized["dapui_config"] = function()
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ return {
|
|||||||
"shfmt",
|
"shfmt",
|
||||||
-- go
|
-- go
|
||||||
"goimports",
|
"goimports",
|
||||||
"gofumpt"
|
"gofumpt",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ return {
|
|||||||
win = {
|
win = {
|
||||||
no_overlap = false,
|
no_overlap = false,
|
||||||
},
|
},
|
||||||
preset = 'modern'
|
preset = "modern",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user