HOLY FUCK IT WORKS

This commit is contained in:
Christoph J. Scherr 2024-02-05 22:57:57 +01:00
parent 92ed4a6998
commit 67a19dec6e
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
2 changed files with 10 additions and 2 deletions

View File

@ -5,7 +5,7 @@ local M = {}
local highlights = require "custom.highlights" local highlights = require "custom.highlights"
M.ui = { M.ui = {
theme = "chadracula", theme = "kanagawa",
theme_toggle = { "kanagawa", "chadracula" }, theme_toggle = { "kanagawa", "chadracula" },
hl_override = highlights.override, hl_override = highlights.override,

View File

@ -744,7 +744,15 @@ local plugins = {
command = "/home/plex/.local/bin/kitty", command = "/home/plex/.local/bin/kitty",
args = {}, args = {},
} }
dap.adapters.codelldb = rustcfg.get_codelldb_adapter(codelldb_path, liblldb_path) dap.adapters.lldb = {
type = "server",
port = "${port}",
executable = {
command = codelldb_path,
args = { "--port", "${port}" },
detached = false,
},
}
dap.configurations.cpp = { dap.configurations.cpp = {
{ {
name = "Launch file", name = "Launch file",