[format] lua via stylua
This commit is contained in:
@@ -2,15 +2,15 @@
|
||||
local wezterm = require("wezterm")
|
||||
local config = wezterm.config_builder()
|
||||
-- workspace dir default
|
||||
config.default_cwd = os.getenv("HOMEPATH") or os.getenv("HOME").. "/workspace"
|
||||
config.default_cwd = os.getenv("HOMEPATH") or os.getenv("HOME") .. "/workspace"
|
||||
-- default term prog can be changed with cli args
|
||||
if os.getenv("pwsh") then
|
||||
config.default_prog = { "pwsh" }
|
||||
config.default_prog = { "pwsh" }
|
||||
end
|
||||
|
||||
--styles
|
||||
config.harfbuzz_features = { "calt=1", "clig=1", "liga=1" }
|
||||
config.font = wezterm.font("JetBrainsMono NF", { weight = "Bold" , style = "Italic"})
|
||||
config.font = wezterm.font("JetBrainsMono NF", { weight = "Bold", style = "Italic" })
|
||||
-- config.font_size = 14
|
||||
config.color_scheme = "Sakura"
|
||||
config.window_padding = {
|
||||
@@ -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,
|
||||
|
||||
@@ -20,10 +20,10 @@ require("lazy").setup({
|
||||
{ import = "plugins" },
|
||||
{ import = "plugins.langs.python" },
|
||||
{ import = "plugins.langs.go" },
|
||||
{import = "plugins.langs.ruby"},
|
||||
{import = "plugins.langs.biome"},
|
||||
{ import = "plugins.langs.ruby" },
|
||||
{ import = "plugins.langs.biome" },
|
||||
{ import = "plugins.langs.xml" },
|
||||
{import ="plugins.langs.lua"},
|
||||
{ import = "plugins.langs.lua" },
|
||||
},
|
||||
defaults = {
|
||||
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
||||
|
||||
@@ -27,8 +27,6 @@ local layouts = {
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
|
||||
vs_search = {
|
||||
preview = false,
|
||||
layout = {
|
||||
|
||||
@@ -2,7 +2,7 @@ return {
|
||||
"saghen/blink.cmp",
|
||||
opts = {
|
||||
keymap = {
|
||||
["<Tab>"] = { "select_and_accept", 'fallback' },
|
||||
["<Tab>"] = { "select_and_accept", "fallback" },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -8,12 +8,12 @@ return {
|
||||
go = { "goimports", "gofumpt" },
|
||||
xml = { "lemminx" },
|
||||
ruby = { "standardrb" },
|
||||
json = { "biome" , "json-lsp"},
|
||||
json = { "biome", "json-lsp" },
|
||||
css = { "biome" },
|
||||
javascript = { "biome" },
|
||||
sql = { "pg_format" },
|
||||
yaml = {"hydra_lsp"},
|
||||
lua = {"stylua"}
|
||||
yaml = { "hydra_lsp" },
|
||||
lua = { "stylua" },
|
||||
},
|
||||
},
|
||||
dependencies = {
|
||||
|
||||
@@ -44,7 +44,7 @@ return {
|
||||
gopls = function(_, opts)
|
||||
-- workaround for gopls not supporting semanticTokensProvider
|
||||
-- https://github.com/golang/go/issues/54531#issuecomment-1464982242
|
||||
Snacks.util.lsp.on({name="gopls"}, function (_, client)
|
||||
Snacks.util.lsp.on({ name = "gopls" }, function(_, client)
|
||||
if not client.server_capabilities.semanticTokensProvider then
|
||||
local semantic = client.config.capabilities.textDocument.semanticTokens
|
||||
client.server_capabilities.semanticTokensProvider = {
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -20,7 +20,7 @@ return {
|
||||
"shfmt",
|
||||
-- go
|
||||
"goimports",
|
||||
"gofumpt"
|
||||
"gofumpt",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -57,11 +57,11 @@ return {
|
||||
git_status = { ignored = false },
|
||||
grep = { ignored = false, hidden = false, exclude = { "*.po", " *.pot" } },
|
||||
todo_comments = { ignored = false, hidden = false },
|
||||
lsp_symbols = {layout = {preset = "lsp_telescope" }},
|
||||
lsp_symbols = { layout = { preset = "lsp_telescope" } },
|
||||
files = {
|
||||
hidden = true,
|
||||
ignored = true,
|
||||
exclude = { "venvs/*", "*.pyc", "*.po" ,"node_modules/*", "bundle/*"},
|
||||
exclude = { "venvs/*", "*.pyc", "*.po", "node_modules/*", "bundle/*" },
|
||||
layout = { preset = "file_telescope" },
|
||||
},
|
||||
},
|
||||
|
||||
@@ -8,7 +8,7 @@ return {
|
||||
win = {
|
||||
no_overlap = false,
|
||||
},
|
||||
preset = 'modern'
|
||||
preset = "modern",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user