todo: dap(it's empty)
This commit is contained in:
0
nvim/.config/nvim/lua/vxclutch/lazy/dap.lua
Normal file
0
nvim/.config/nvim/lua/vxclutch/lazy/dap.lua
Normal file
@@ -83,7 +83,7 @@ return {
|
||||
vim.diagnostic.config({
|
||||
-- update_in_insert = true,
|
||||
float = {
|
||||
focusable = false,
|
||||
focusable = true,
|
||||
style = "minimal",
|
||||
border = "rounded",
|
||||
source = "always",
|
||||
|
||||
@@ -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 },
|
||||
|
||||
@@ -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" })
|
||||
|
||||
@@ -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" })
|
||||
|
||||
Reference in New Issue
Block a user