[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

@@ -1,11 +1,11 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
biome = {
cmd = { "biome", "lsp-proxy" },
filetypes = { "javascript", "css", "json" },
},
},
},
"neovim/nvim-lspconfig",
opts = {
servers = {
biome = {
cmd = { "biome", "lsp-proxy" },
filetypes = { "javascript", "css", "json" },
},
},
},
}

View File

@@ -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 = {

View File

@@ -1,43 +1,43 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
lua_ls = {
settings = {
Lua = {
runtime = {
version = "LuaJIT",
},
format = {
enable = true,
defaultConfig = {
indent_style = "space",
indent_size = "2",
max_line_length = "88",
},
},
diagnostics = {
globals = { "vim" },
},
workspace = {
library = {
vim.env.VIMRUNTIME,
},
checkThirdParty = false,
},
telemetry = {
enable = false,
},
},
},
},
},
setup = {
lua_ls = function()
require("snacks").util.lsp.on({ name = "lua_ls" }, function(_, client)
client.server_capabilities.hoverProvider = true
end)
end,
},
},
"neovim/nvim-lspconfig",
opts = {
servers = {
lua_ls = {
settings = {
Lua = {
runtime = {
version = "LuaJIT",
},
format = {
enable = true,
defaultConfig = {
indent_style = "space",
indent_size = "2",
max_line_length = "88",
},
},
diagnostics = {
globals = { "vim" },
},
workspace = {
library = {
vim.env.VIMRUNTIME,
},
checkThirdParty = false,
},
telemetry = {
enable = false,
},
},
},
},
},
setup = {
lua_ls = function()
require("snacks").util.lsp.on({ name = "lua_ls" }, function(_, client)
client.server_capabilities.hoverProvider = true
end)
end,
},
},
}

View File

@@ -1,66 +1,63 @@
-- lua/plugins/dap-python.lua
return {
-- Core DAP plugin
{
"mfussenegger/nvim-dap",
dependencies = {
-- UI for the debugger
{
"rcarriga/nvim-dap-ui",
dependencies = { "nvim-neotest/nvim-nio" },
opts = {},
config = function(_, opts)
local dap = require("dap")
local dapui = require("dapui")
dapui.setup(opts)
-- icons
-- Core DAP plugin
{
"mfussenegger/nvim-dap",
dependencies = {
-- UI for the debugger
{
"rcarriga/nvim-dap-ui",
dependencies = { "nvim-neotest/nvim-nio" },
opts = {},
config = function(_, opts)
local dap = require("dap")
local dapui = require("dapui")
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()
dapui.open()
end
dap.listeners.before.event_terminated["dapui_config"] = function()
dapui.close()
end
dap.listeners.before.event_exited["dapui_config"] = function()
dapui.close()
end
end,
},
-- Auto open/close UI
dap.listeners.after.event_initialized["dapui_config"] = function()
dapui.open()
end
dap.listeners.before.event_terminated["dapui_config"] = function()
dapui.close()
end
dap.listeners.before.event_exited["dapui_config"] = function()
dapui.close()
end
end,
},
-- Virtual text showing variable values
{
"theHamsta/nvim-dap-virtual-text",
opts = {},
},
-- Virtual text showing variable values
{
"theHamsta/nvim-dap-virtual-text",
opts = {},
},
-- Python-specific adapter
{
"mfussenegger/nvim-dap-python",
config = function()
local dap = require("dap")
-- If installed via Mason:
require("dap-python").setup("~/.local/share/nvim/mason/packages/debugpy/venv/bin/python")
-- remote
table.insert(dap.configurations.python, {
type = "python",
request = "attach",
name = "Attach to Process (5678)",
connect = {
host = "localhost",
port = 5678,
},
})
end,
},
},
-- Python-specific adapter
{
"mfussenegger/nvim-dap-python",
config = function()
local dap = require("dap")
-- If installed via Mason:
require("dap-python").setup("~/.local/share/nvim/mason/packages/debugpy/venv/bin/python")
-- remote
table.insert(dap.configurations.python, {
type = "python",
request = "attach",
name = "Attach to Process (5678)",
connect = {
host = "localhost",
port = 5678,
},
})
end,
},
},
keys = {
keys = {
-- Basic debugging
-- stylua: ignore start
{ "<leader>db", function() require("dap").toggle_breakpoint() end, desc = "Toggle Breakpoint" },
@@ -82,23 +79,23 @@ return {
-- DAP UI
{ "<leader>du", function() require("dapui").toggle({}) end, desc = "Dap UI" },
{ "<leader>de", function() require("dapui").eval() end, desc = "Eval", mode = {"n", "v"} },
-- stylua: ignore end
{
"<leader>dI",
function()
local lines = {
"import debugpy",
'debugpy.listen(("localhost", 5678))',
'print("                              ")',
'print(" Debugpy listening on port 5678 ", flush=True)',
'print("                              ")',
"",
}
vim.api.nvim_buf_set_lines(0, 0, 0, false, lines)
end,
desc = "Insert debugpy listener at top",
ft = "python",
},
},
},
-- stylua: ignore end
{
"<leader>dI",
function()
local lines = {
"import debugpy",
'debugpy.listen(("localhost", 5678))',
'print("                              ")',
'print(" Debugpy listening on port 5678 ", flush=True)',
'print("                              ")',
"",
}
vim.api.nvim_buf_set_lines(0, 0, 0, false, lines)
end,
desc = "Insert debugpy listener at top",
ft = "python",
},
},
},
}

View File

@@ -20,7 +20,7 @@ return {
init_options = {
settings = {
logLevel = "error",
configuration = config_path, -- Use the dynamically set config_path
configuration = config_path, -- Use the dynamically set config_path
configurationPreference = "filesystemFirst",
},
},

View File

@@ -1,13 +1,13 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
ruby_lsp = {
mason = false,
cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
single_file_support = false,
root_partern = { ".git" },
},
},
},
"neovim/nvim-lspconfig",
opts = {
servers = {
ruby_lsp = {
mason = false,
cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
single_file_support = false,
root_partern = { ".git" },
},
},
},
}

View File

@@ -1,22 +1,22 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
lemminx = {
init_options = {
settings = {
xml = {
format = {
enabled = true,
splitAttributes = false,
},
validation = {
noGrammar = "ignore",
},
},
},
},
},
},
},
"neovim/nvim-lspconfig",
opts = {
servers = {
lemminx = {
init_options = {
settings = {
xml = {
format = {
enabled = true,
splitAttributes = false,
},
validation = {
noGrammar = "ignore",
},
},
},
},
},
},
},
}