todo: dap(it's empty)

This commit is contained in:
vx-clutch
2024-12-16 21:20:06 -05:00
parent fe4e05b189
commit abfcb298e3
8 changed files with 18 additions and 5 deletions

View File

@@ -83,7 +83,7 @@ return {
vim.diagnostic.config({
-- update_in_insert = true,
float = {
focusable = false,
focusable = true,
style = "minimal",
border = "rounded",
source = "always",

View File

@@ -10,7 +10,6 @@ return {
bigfile = { enabled = true },
indent = { enabled = true },
input = { enabled = true },
notifier = { enabled = true },
quickfile = { enabled = true },
scroll = { enabled = true },
statuscolumn = { enabled = true },

View File

@@ -18,3 +18,7 @@ vim.keymap.set("n", "<C-h>", "<C-w><C-h>", { desc = "Move focus to the left wind
vim.keymap.set("n", "<C-l>", "<C-w><C-l>", { desc = "Move focus to the right window" })
vim.keymap.set("n", "<C-j>", "<C-w><C-j>", { desc = "Move focus to the lower window" })
vim.keymap.set("n", "<C-k>", "<C-w><C-k>", { desc = "Move focus to the upper window" })
-- DAP
vim.keymap.set("n", "<leader>b", ":DapToggleBreakpoint<CR>", { noremap = true, silent = true, desc = "Toggle Breakpoint" })
vim.keymap.set("n", "<leader>db", ":DapContinue<CR>", { noremap = true, silent = true, desc = "Start or Contine the Debugger" })

View File

@@ -29,3 +29,6 @@ vim.opt.swapfile = false
vim.opt.scrolloff = 8
vim.opt.updatetime = 50
vim.opt.colorcolumn = "127"
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })