[format] lua via stylua
This commit is contained in:
@@ -2,15 +2,15 @@
|
|||||||
local wezterm = require("wezterm")
|
local wezterm = require("wezterm")
|
||||||
local config = wezterm.config_builder()
|
local config = wezterm.config_builder()
|
||||||
-- workspace dir default
|
-- 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
|
-- default term prog can be changed with cli args
|
||||||
if os.getenv("pwsh") then
|
if os.getenv("pwsh") then
|
||||||
config.default_prog = { "pwsh" }
|
config.default_prog = { "pwsh" }
|
||||||
end
|
end
|
||||||
|
|
||||||
--styles
|
--styles
|
||||||
config.harfbuzz_features = { "calt=1", "clig=1", "liga=1" }
|
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.font_size = 14
|
||||||
config.color_scheme = "Sakura"
|
config.color_scheme = "Sakura"
|
||||||
config.window_padding = {
|
config.window_padding = {
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -20,10 +20,10 @@ require("lazy").setup({
|
|||||||
{ import = "plugins" },
|
{ import = "plugins" },
|
||||||
{ import = "plugins.langs.python" },
|
{ import = "plugins.langs.python" },
|
||||||
{ import = "plugins.langs.go" },
|
{ import = "plugins.langs.go" },
|
||||||
{import = "plugins.langs.ruby"},
|
{ import = "plugins.langs.ruby" },
|
||||||
{import = "plugins.langs.biome"},
|
{ import = "plugins.langs.biome" },
|
||||||
{ import = "plugins.langs.xml" },
|
{ import = "plugins.langs.xml" },
|
||||||
{import ="plugins.langs.lua"},
|
{ import = "plugins.langs.lua" },
|
||||||
},
|
},
|
||||||
defaults = {
|
defaults = {
|
||||||
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
||||||
|
|||||||
@@ -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" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
return {
|
return {
|
||||||
"stevearc/conform.nvim",
|
"stevearc/conform.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
-- lsp_formatting = false,
|
-- lsp_formatting = false,
|
||||||
-- fallback = false,
|
-- fallback = false,
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
python = { "black" },
|
python = { "black" },
|
||||||
go = { "goimports", "gofumpt" },
|
go = { "goimports", "gofumpt" },
|
||||||
xml = { "lemminx" },
|
xml = { "lemminx" },
|
||||||
ruby = { "standardrb" },
|
ruby = { "standardrb" },
|
||||||
json = { "biome" , "json-lsp"},
|
json = { "biome", "json-lsp" },
|
||||||
css = { "biome" },
|
css = { "biome" },
|
||||||
javascript = { "biome" },
|
javascript = { "biome" },
|
||||||
sql = { "pg_format" },
|
sql = { "pg_format" },
|
||||||
yaml = {"hydra_lsp"},
|
yaml = { "hydra_lsp" },
|
||||||
lua = {"stylua"}
|
lua = { "stylua" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"mason.nvim",
|
"mason.nvim",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
return {
|
return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
servers = {
|
servers = {
|
||||||
biome = {
|
biome = {
|
||||||
cmd = { "biome", "lsp-proxy" },
|
cmd = { "biome", "lsp-proxy" },
|
||||||
filetypes = { "javascript", "css", "json" },
|
filetypes = { "javascript", "css", "json" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ return {
|
|||||||
gopls = function(_, opts)
|
gopls = function(_, opts)
|
||||||
-- workaround for gopls not supporting semanticTokensProvider
|
-- workaround for gopls not supporting semanticTokensProvider
|
||||||
-- https://github.com/golang/go/issues/54531#issuecomment-1464982242
|
-- 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
|
if not client.server_capabilities.semanticTokensProvider then
|
||||||
local semantic = client.config.capabilities.textDocument.semanticTokens
|
local semantic = client.config.capabilities.textDocument.semanticTokens
|
||||||
client.server_capabilities.semanticTokensProvider = {
|
client.server_capabilities.semanticTokensProvider = {
|
||||||
|
|||||||
@@ -1,43 +1,43 @@
|
|||||||
return {
|
return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
servers = {
|
servers = {
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
settings = {
|
settings = {
|
||||||
Lua = {
|
Lua = {
|
||||||
runtime = {
|
runtime = {
|
||||||
version = "LuaJIT",
|
version = "LuaJIT",
|
||||||
},
|
},
|
||||||
format = {
|
format = {
|
||||||
enable = true,
|
enable = true,
|
||||||
defaultConfig = {
|
defaultConfig = {
|
||||||
indent_style = "space",
|
indent_style = "space",
|
||||||
indent_size = "2",
|
indent_size = "2",
|
||||||
max_line_length = "88",
|
max_line_length = "88",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
globals = { "vim" },
|
globals = { "vim" },
|
||||||
},
|
},
|
||||||
workspace = {
|
workspace = {
|
||||||
library = {
|
library = {
|
||||||
vim.env.VIMRUNTIME,
|
vim.env.VIMRUNTIME,
|
||||||
},
|
},
|
||||||
checkThirdParty = false,
|
checkThirdParty = false,
|
||||||
},
|
},
|
||||||
telemetry = {
|
telemetry = {
|
||||||
enable = false,
|
enable = false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup = {
|
setup = {
|
||||||
lua_ls = function()
|
lua_ls = function()
|
||||||
require("snacks").util.lsp.on({ name = "lua_ls" }, function(_, client)
|
require("snacks").util.lsp.on({ name = "lua_ls" }, function(_, client)
|
||||||
client.server_capabilities.hoverProvider = true
|
client.server_capabilities.hoverProvider = true
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,66 +1,63 @@
|
|||||||
-- lua/plugins/dap-python.lua
|
-- lua/plugins/dap-python.lua
|
||||||
return {
|
return {
|
||||||
-- Core DAP plugin
|
-- Core DAP plugin
|
||||||
{
|
{
|
||||||
"mfussenegger/nvim-dap",
|
"mfussenegger/nvim-dap",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
-- UI for the debugger
|
-- UI for the debugger
|
||||||
{
|
{
|
||||||
"rcarriga/nvim-dap-ui",
|
"rcarriga/nvim-dap-ui",
|
||||||
dependencies = { "nvim-neotest/nvim-nio" },
|
dependencies = { "nvim-neotest/nvim-nio" },
|
||||||
opts = {},
|
opts = {},
|
||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
local dap = require("dap")
|
local dap = require("dap")
|
||||||
local dapui = require("dapui")
|
local dapui = require("dapui")
|
||||||
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()
|
||||||
dapui.open()
|
dapui.open()
|
||||||
end
|
end
|
||||||
dap.listeners.before.event_terminated["dapui_config"] = function()
|
dap.listeners.before.event_terminated["dapui_config"] = function()
|
||||||
dapui.close()
|
dapui.close()
|
||||||
end
|
end
|
||||||
dap.listeners.before.event_exited["dapui_config"] = function()
|
dap.listeners.before.event_exited["dapui_config"] = function()
|
||||||
dapui.close()
|
dapui.close()
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Virtual text showing variable values
|
-- Virtual text showing variable values
|
||||||
{
|
{
|
||||||
"theHamsta/nvim-dap-virtual-text",
|
"theHamsta/nvim-dap-virtual-text",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Python-specific adapter
|
-- Python-specific adapter
|
||||||
{
|
{
|
||||||
"mfussenegger/nvim-dap-python",
|
"mfussenegger/nvim-dap-python",
|
||||||
config = function()
|
config = function()
|
||||||
local dap = require("dap")
|
local dap = require("dap")
|
||||||
-- If installed via Mason:
|
-- If installed via Mason:
|
||||||
require("dap-python").setup("~/.local/share/nvim/mason/packages/debugpy/venv/bin/python")
|
require("dap-python").setup("~/.local/share/nvim/mason/packages/debugpy/venv/bin/python")
|
||||||
-- remote
|
-- remote
|
||||||
table.insert(dap.configurations.python, {
|
table.insert(dap.configurations.python, {
|
||||||
type = "python",
|
type = "python",
|
||||||
request = "attach",
|
request = "attach",
|
||||||
name = "Attach to Process (5678)",
|
name = "Attach to Process (5678)",
|
||||||
connect = {
|
connect = {
|
||||||
host = "localhost",
|
host = "localhost",
|
||||||
port = 5678,
|
port = 5678,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
keys = {
|
keys = {
|
||||||
-- Basic debugging
|
-- Basic debugging
|
||||||
-- stylua: ignore start
|
-- stylua: ignore start
|
||||||
{ "<leader>db", function() require("dap").toggle_breakpoint() end, desc = "Toggle Breakpoint" },
|
{ "<leader>db", function() require("dap").toggle_breakpoint() end, desc = "Toggle Breakpoint" },
|
||||||
@@ -82,23 +79,23 @@ return {
|
|||||||
-- DAP UI
|
-- DAP UI
|
||||||
{ "<leader>du", function() require("dapui").toggle({}) end, desc = "Dap UI" },
|
{ "<leader>du", function() require("dapui").toggle({}) end, desc = "Dap UI" },
|
||||||
{ "<leader>de", function() require("dapui").eval() end, desc = "Eval", mode = {"n", "v"} },
|
{ "<leader>de", function() require("dapui").eval() end, desc = "Eval", mode = {"n", "v"} },
|
||||||
-- stylua: ignore end
|
-- stylua: ignore end
|
||||||
{
|
{
|
||||||
"<leader>dI",
|
"<leader>dI",
|
||||||
function()
|
function()
|
||||||
local lines = {
|
local lines = {
|
||||||
"import debugpy",
|
"import debugpy",
|
||||||
'debugpy.listen(("localhost", 5678))',
|
'debugpy.listen(("localhost", 5678))',
|
||||||
'print(" ")',
|
'print(" ")',
|
||||||
'print(" Debugpy listening on port 5678 ", flush=True)',
|
'print(" Debugpy listening on port 5678 ", flush=True)',
|
||||||
'print(" ")',
|
'print(" ")',
|
||||||
"",
|
"",
|
||||||
}
|
}
|
||||||
vim.api.nvim_buf_set_lines(0, 0, 0, false, lines)
|
vim.api.nvim_buf_set_lines(0, 0, 0, false, lines)
|
||||||
end,
|
end,
|
||||||
desc = "Insert debugpy listener at top",
|
desc = "Insert debugpy listener at top",
|
||||||
ft = "python",
|
ft = "python",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ return {
|
|||||||
init_options = {
|
init_options = {
|
||||||
settings = {
|
settings = {
|
||||||
logLevel = "error",
|
logLevel = "error",
|
||||||
configuration = config_path, -- Use the dynamically set config_path
|
configuration = config_path, -- Use the dynamically set config_path
|
||||||
configurationPreference = "filesystemFirst",
|
configurationPreference = "filesystemFirst",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
return {
|
return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
servers = {
|
servers = {
|
||||||
ruby_lsp = {
|
ruby_lsp = {
|
||||||
mason = false,
|
mason = false,
|
||||||
cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
|
cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
|
||||||
single_file_support = false,
|
single_file_support = false,
|
||||||
root_partern = { ".git" },
|
root_partern = { ".git" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
return {
|
return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
servers = {
|
servers = {
|
||||||
lemminx = {
|
lemminx = {
|
||||||
init_options = {
|
init_options = {
|
||||||
settings = {
|
settings = {
|
||||||
xml = {
|
xml = {
|
||||||
format = {
|
format = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
splitAttributes = false,
|
splitAttributes = false,
|
||||||
},
|
},
|
||||||
validation = {
|
validation = {
|
||||||
noGrammar = "ignore",
|
noGrammar = "ignore",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ return {
|
|||||||
"shfmt",
|
"shfmt",
|
||||||
-- go
|
-- go
|
||||||
"goimports",
|
"goimports",
|
||||||
"gofumpt"
|
"gofumpt",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,11 +57,11 @@ return {
|
|||||||
git_status = { ignored = false },
|
git_status = { ignored = false },
|
||||||
grep = { ignored = false, hidden = false, exclude = { "*.po", " *.pot" } },
|
grep = { ignored = false, hidden = false, exclude = { "*.po", " *.pot" } },
|
||||||
todo_comments = { ignored = false, hidden = false },
|
todo_comments = { ignored = false, hidden = false },
|
||||||
lsp_symbols = {layout = {preset = "lsp_telescope" }},
|
lsp_symbols = { layout = { preset = "lsp_telescope" } },
|
||||||
files = {
|
files = {
|
||||||
hidden = true,
|
hidden = true,
|
||||||
ignored = true,
|
ignored = true,
|
||||||
exclude = { "venvs/*", "*.pyc", "*.po" ,"node_modules/*", "bundle/*"},
|
exclude = { "venvs/*", "*.pyc", "*.po", "node_modules/*", "bundle/*" },
|
||||||
layout = { preset = "file_telescope" },
|
layout = { preset = "file_telescope" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ return {
|
|||||||
win = {
|
win = {
|
||||||
no_overlap = false,
|
no_overlap = false,
|
||||||
},
|
},
|
||||||
preset = 'modern'
|
preset = "modern",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user