HOLY FUCK IT WORKS
This commit is contained in:
parent
92ed4a6998
commit
67a19dec6e
|
@ -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,
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue