summaryrefslogtreecommitdiff
path: root/mac/.config/TheSiahxyz/lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-08-25 05:53:30 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-08-25 05:53:30 +0900
commite7224d0c2da96da16264c28d1c91296e87f5251d (patch)
treea702cebeff9ab69d55a2dcf101ae664b42096715 /mac/.config/TheSiahxyz/lua
parent23ac04d605b96804d60e60e181a3982acc05e553 (diff)
modified plugins/lsp.lua, modified plugins/markdown.lua, modified aerospace/aerospace.toml, modified tmux/tmux.conf
Diffstat (limited to 'mac/.config/TheSiahxyz/lua')
-rw-r--r--mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/lsp.lua12
-rw-r--r--mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/markdown.lua2
2 files changed, 9 insertions, 5 deletions
diff --git a/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/lsp.lua b/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/lsp.lua
index 8beb058..6aafad3 100644
--- a/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/lsp.lua
+++ b/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/lsp.lua
@@ -84,7 +84,11 @@ return {
},
})
- require("mason").setup()
+ require("mason").setup({
+ pip = {
+ use_python3_host_prog = true,
+ },
+ })
require("mason-lspconfig").setup({
ensure_installed = {
"bashls",
@@ -94,12 +98,12 @@ return {
"jdtls",
"jsonls",
"lua_ls",
- "mutt_ls",
+ -- "mutt_ls",
"pyright",
"ruff",
"ts_ls",
},
- automatic_installation = true,
+ automatic_enable = true,
handlers = {
function(server_name) -- default handler (optional)
require("lspconfig")[server_name].setup({
@@ -242,7 +246,7 @@ return {
"black", -- python formatter
"debugpy", -- python debuger
"eslint_d", -- eslint linter
- "hadolint", -- docker linter
+ -- "hadolint", -- docker linter
"isort", -- python formatter
"java-debug-adapter", -- java debugger
"java-test", -- java test
diff --git a/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/markdown.lua b/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/markdown.lua
index dc96a9e..0987818 100644
--- a/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/markdown.lua
+++ b/mac/.config/TheSiahxyz/lua/TheSiahxyz/plugins/markdown.lua
@@ -552,7 +552,7 @@ return {
local venv_name = vim.fn.fnamemodify(venv_path, ":t")
vim.cmd(("MoltenInit %s"):format(venv_name))
else
- vim.cmd("MoltenInit python3")
+ vim.cmd("MoltenInit /opt/homebrew/bin/python@3.13")
end
end, { desc = "Init default molten" })
end,